* {
  padding: 0px;
  margin: 0px;
}
body {
  color: white;
  background-image: url(https://i.allthepics.net/2026/02/27/unique_red_and_black_background_hd_red_aesthetic.md.jpg);
  background-attachment: fixed;

  background-color: rgb(20, 20, 20);
}

a {
  text-decoration: none;
  color: white;
}

.metamorphous {
  font-family: "Metamorphous", "Papyrus", serif;
  font-weight: 400;
  font-style: bold;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content {
  flex-shrink: 0;
  flex-grow: 0;
  width: 55vw;
  margin: 0px 45px;
}

section {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.136);
  padding: 10px;
}

.bottommargin {
  margin-bottom: 50px;
}

.button {
  border: 3px groove white;
  text-decoration: none;
  color: white;
  padding: 5px;
  margin-left: 2%;
  border-radius: 12px;
  transition-duration: 0.2s;
}

.button:hover {
  background-color: white;
  color: red;
  transform: scale(1.1, 1.1);
}

.fancytext {
  font-size: large;
  font-family: fantasy;
}

.relative {
  position: relative;
}

.webbadge {
  margin: 5px 0px;
  border: 3px rgb(118, 0, 0) solid;
}

#title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 15px;
  font-size: 150%;
  text-align: center;
}

#plagueroom {
  transition: 0.3s ease-in-out;
}
#plagueroom:hover {
  transform: scale(1.1, 1.1);
  text-shadow: 0px 0px 30px red;
}

#topbar {
  background-color: rgba(105, 105, 105, 0);
  padding: 5px;
  height: 30px;
  align-items: flex-end;
  position: sticky;
}

#mainwrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 20px;
}

#mobile {
  display: none;
}

.wiggle {
  animation-name: wiggle;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes wiggle {
  0% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(8px);
  }
}

/** responsive ui **/
@media (max-width: 768px) {
  .content {
    width: 85vw;
  }
}

@media (max-width: 425px) {
  body {
    display: flex;
    flex-direction: column;
    font-size: small;
  }

  .relative {
    display: none;
  }

  .wiggle {
    display: none;
  }

  #mobile {
    display: block;
  }

  #welcome {
    display: none;
  }

  #mainwrapper {
    margin: 0px;
  }
}
