body {
  background-color: #1d1d1d;
}

.center {
  text-align: center;

  width: auto;
  max-height: fit-content;
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 10%;
  right: 10%;
}

div {
  padding-left: 2vw;
  padding-right: 2vw;
  color: #f1f0cc;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

a,
p {
  align-self: center;
  font-size: large;
  font-weight: 300;
}

a:link,
a:visited {
  text-align: center;
  color: #f1f0cc;
}

a:hover,
a:active {
  text-align: center;
  color: #cccdf1;
}

.rainbow_text_animated {
  background: linear-gradient(
    to right,
    #6666ff,
    #0099ff,
    #00ff00,
    #ff3399,
    #6666ff
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow_animation 6s ease-in-out infinite;
  background-size: 400% 100%;
}

@keyframes rainbow_animation {
  0%,
  100% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }
}

.topbar {
  padding-top: 2vh;
  padding-left: 2vw;
  text-align: left;
}

.topbar-login {
  padding-top: 2vh;
  padding-right: 2vw;
  text-align: right;
}

.textbox {
  font: inherit;
  background: transparent;
  border-color: #f1f0cc;
  color: #f1f0cc;
  width: 20%;
}

.button {
  font: inherit;
  background: #f1f0cc;
  border-radius: 10px;
  cursor: pointer;
  border-style: solid;
  border-color: #f1f0cc;
  margin: 10px;
}

.timer {
  font: inherit;
  font-size: xx-large;
}

.gallery img {
  width: 48%;
  height: auto;
  float: left;
  border-radius: 2%;
  margin: 1%;
  cursor: zoom-in;
}

.gallery img:hover {
  transform: scale(1.1);
}
