/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@import url('https://fonts.googleapis.com/css2?family=Eczar:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@100..900&display=swap');

body {
  color: #2eff3f;
  font-family: 'Eczar';
  font-size: 20px;
  background-color: #2b122a;
  }
  .home {
    background: #2b122a url(https://urplephlegm.neocities.org/gifs/statique.gif) no-repeat top;
    background-size: 100%;
  }
  .art {
    background: #2b122a url("https://urplephlegm.neocities.org/gifs/hyjuk.gif");
    background-size: 100%;
  }

h1 {
  font-size: 50px;
  font-weight: bold;
  font-family: 'Grenze Gotisch';
  text-align: center;
  line-height:3px
}

h2 {
  font-weight: bold;
  font-family: 'Grenze Gotisch';
}

a {
  color: #ef9eff;
  background: rgba(135, 81, 140, 0.9)
}

.aimg {
  background: rgba(0, 0, 0, 0)
}

ul {
  text-align: left
}

li {
  font-style: italic;
}

table {
  width:90%;
  margin-left:auto;
  margin-right:auto;
}

td {
  padding: 10px;
  text-align: center;
  vertical-align: top
}

div {
  background-color: rgba(135, 81, 140, 0.9);
  width: 1000px;
  height: auto;
  border: 4px outset #2eff3f;
  padding: 10px;
  margin: auto;
  text-align: center
}

.divleft {
  width:17%;
  float:left
}

.divmid {
  width:60%;
  float:center
}

.divright {
  width:17%;
  float:right
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: center
}
.gallerytext {
  text-align: center;
  padding: 5px
}
.gallery-item {
  border: none;
  margin: 5px;
  width: auto;
  margin:auto
}
.gallery-item:hover {
  border: 4px outset #2eff3f
}
.gallery-item .desc {
  background-color: rgba (0, 0, 0, 0);
  padding: 5px;
  width: 100%;
  height: auto;
  text-align: center;
  float:center
}