@font-face {
  font-family: "Fliege";
  src: url(https://humantooth.neocities.org/fonts/FliegeMono-Regular.woff2)
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

html {
  background-image: url("../images/bg3.gif");
  background-repeat: repeat;
  font-family: Fliege, sans-serif;
  color: #002df7ff;
  margin: 2%;
  padding: 0;
}

#main-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.logo-title {
  width: 500px;
  height: auto;
}

.badge-set {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .logo-title {
    width: 350px;
    height: auto;
  }

  .wave-divider {
    width: 110%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .badge-set {
    flex-direction: column;
    gap: 10px;
  }
}

#title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.floating {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.wave-divider {
  width: 120%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.welcome-sign {
  width: 80%;
  height: auto;
  margin-left: 20px;
}

.badge {
  width: 150px;
  height: auto;
}

#main-box {
  background-color: rgba(203, 255, 210, 1);
  max-width: 550px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  border: 4px dashed #001affff;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}
