body {
 background-image: url('bg.jpg');
 background-position: center top;
 background-repeat: repeat;
 background-size: auto 100vh;
 justify-content: center;
}

p {
  padding: 0px 10px 0px 10px;
  margin: 0px;
  line-height: 1.5;
  font-family: abd;
  color: rgba(255, 255, 255, 0.8);
}

.overlay {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: saturate(160%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0%;
  left: 50%;
  margin-top: 10vh;
  margin-left: -410px;
  width: 820px;
  height: 90vh;
  z-index: -1000;
}

.center {
  width: 800px;
  text-align: center;
  margin: auto auto 22px auto;
}

.box {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px) saturate(180%);
  box-shadow: 0px 5px #404040;
  width: 800px;
  padding: 13px 0px 10px 0px;
  margin: auto auto 22px auto;
  text-align: center;
  opacity: 1.0;
}

.boxtext {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px -3px #404040;
  padding: 10px;
  margin: auto 10px auto 10px;
  text-align: left;
  font-family: abd;
  font-size: 18px;
}

.socials {
  display: table;
  table-layout: fixed;
  width: 800px;
  margin: 22px auto;
}

.socials a {
  display: table-cell;
  text-align: center;
}

.img-link {
  width: 80px;
  filter: invert(100%);
  opacity: 0.5;
  transition: 0.1s;
}

.img-link:hover {
  translate: 0px -5px;
  rotate: -2deg;
}

.quote-gen {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 5px #404040;
  width: 800px;
  padding-top: 10px;
  padding-bottom: 15px;
  margin: 22px auto;
  text-align: center;
}

.topnav {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.0);
  width: 800px;
  height: 10vh;
  margin: 22px auto 0px auto;
  line-height: 2;
  text-align: center;
  opacity: 1.0;
}

.topnav a {
  text-decoration: none;
}

.topnav a.active {
  background-color: black;
}

.button {
  padding: 8px 30px;
  font-family: abd;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 4px;
  margin-left: 4px;
  border-width: 0px;
  background-color: rgba(255, 255, 255, 0.0);
  font-size: 36px;
  filter: blur(1.5px);
  transition: 0.1s ease;
}

.button-down {
  padding: 8px 30px;
  font-family: abd-b;
  color: rgba(255, 255, 255, 0.65);
  margin-right: 4px;
  margin-left: 4px;
  border-width: 0px;
  background-color: rgba(255, 255, 255, 0.0);
  font-size: 36px;
  filter: blur(1.5px);
  transition: 0.1s ease;
}

.button:hover {
  filter: blur(1px);
  color: rgba(255, 255, 255, 0.9);
}

.button-down:hover {
  filter: blur(1px);
  color: rgba(255, 255, 255, 0.9);
}

.button:active {
  box-shadow: 0px 0px black;
  translate: 0px 0px;
  rotate: 0deg;
}

@font-face {
  font-family: abd;
  src: url('fonts/HELVETICANEUEROMAN.OTF');
}

@font-face {
  font-family: abd-b;
  src: url('fonts/HELVETICANEUEBOLD.OTF');
}

@font-face {
  font-family: title;
  src: url('fonts/BLKCHCRY.TTF');
}

@keyframes bgAnim {
  0% {background-position: 25% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}