body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-image: url(background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  color: white;
  background-color: black;
}

#startbox {
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 15vh;
  width: 40vh;
  background-color: #0000003b;
  border-radius: 1vh;
  box-shadow: 0px 0px 1.5vh #0000002d;
  backdrop-filter: blur(0.5vh);
  -webkit-backdrop-filter: blur(0.5vh);
  margin-bottom: 2vh;

}

h1 {
  font-weight: 100;
  text-align: center;
  line-height: 0px;
  text-shadow: 0px 0px 0.7vh #ffffff83;
}

#startbox p {
  line-height: 4vh;
}

#links {
  text-align: center;
  box-shadow: 0px 0px 0.4vh #0000002d;
  text-shadow: 0px 0px 1.5vh #0000002d inset;
  border-radius: 0.3vh;
  padding: 0.25vh 1vh;
}

#links a {
  text-decoration: none;
  color: white;
}

#content {
  width: 60vw;
  background-color: #0000003b;
  text-align: center;
  margin-top: 0vh;
  margin-bottom: 10vh;
  padding: 2.5vh 8vh;
  border-radius: 1vh;
  box-shadow: 0px 0px 1vh #6d6d6d2d;
  backdrop-filter: blur(0.5vh);
  -webkit-backdrop-filter: blur(0.5vh);
  line-height: 2vh;
}

#title h2 {
  margin-top: 10vh;
  font-size: 4vh;
  text-shadow: 0px 0px 0.7vh #ffffff83;
  text-align: center;
  font-weight: 100;
}

#content p {
  font-size: 1.5vh;
  text-align: left;
  padding-left: 2vh;
}

#back {
  position: fixed;
  top: 2vh;
  left: 1.5vh;
  width: 8vh;
  height: 4vh;
  background-color: #74747400;
  border-radius: 1vh;
  z-index: 1000;
  backdrop-filter: blur(0.5vh);
  -webkit-backdrop-filter: blur(0.5vh);
  transition: 0.2s ease;
  color: #ffffff45;
  box-shadow: 0px 0px 1.5vh #00000000;
}

#back:hover {
  background-color: #74747410;
  color: white;
  box-shadow: 0px 0px 1vh #ffffff20;
  left: 2vh;
}

#back p {
  font-size: 1.666667vh;
  line-height: 0px;
  text-align: center;
  line-height: 0.5vh;
}

#background-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0%) blur(3vh);
  z-index: -1;
}

#title {
  margin-top: 0vh;
  opacity: 0;
  animation: Start 1s forwards;
}

@keyframes Start {
  to {
    margin-top: 5vh;
    opacity: 1;
  }
}

#content {
  opacity: 0;
  animation: fadeIn 0.75s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

#back {
  opacity: 0;
  animation: back 1s forwards;
}

@keyframes back {
  to {
    opacity: 1;
  }
}

#background-blur {
  animation: fadeInBody 1.5s forwards;
}

@keyframes fadeInBody {
  to {
    filter: brightness(50%) blur(0.4vh);
  }
}

#content h3 {
  font-weight: 100;
  font-size: 3vh;
  text-align: left;
  line-height: 4vh;
}
#content h4 {
  font-weight: 100;
  font-size: 2.25vh;
  text-align: left;
  padding-left: 1vh;
  margin-bottom: 0vh;
}
#content img {
  width: 85.6956521739%;
  opacity: 0.5;
  border-radius: 1vh;
}
#img-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#img-container img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

#imgbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0); 
  box-shadow: 0px 0px 6vh rgb(0, 0, 0) inset;
  z-index: 2; 
  pointer-events: none; 
  border-radius: 1vh; 
}
#imgbox2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  box-shadow: 0px 0px 2vh rgb(0, 0, 0);
  z-index: 0; 
  pointer-events: none; 
  border-radius: 1vh; 
}
#HistorySection {
  margin-bottom: 2vh;
  margin-top: 2vh;
}
#content li {
  text-align: left;
  line-height: 2.5vh;
  font-size: 1.5vh;
}
#content a {
  text-decoration: none;
  color: #AAAAFF;
}
#HistorySection p {
  text-align: center;
  font-size: 1.6875vw;
}
#HistorySection {
  background-color: #23232332;
  padding: 3vh; 
  padding-top: 1vh;
  padding-right: 3vh;
  padding-bottom: 4.5vh;
  border-radius: 1vh;
  padding-bottom: 1vh;
}
#contactlist {
  margin-top: 0px;
  margin-left: 2vh;
  margin-bottom: 0vh;
}
