
body {
  width: 100vw;
  height: fit-content;
  margin: 0;
  padding: 0px;
  font-family: 'Lexend', sans-serif;
  background-color: rgb(255, 255, 255);
}

h1 {
  top: 10vh;
  text-align: center;
  position: relative;
  writing-mode: vertical-lr;
  font-size: 4rem;
  font-family: 'Lexend', sans-serif;
  color: #000000;
}


.nav {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 32px;
  justify-content: center;
  text-align: center;
}

.nav a {
  margin: 16px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  padding: 12px;
  font-size: 1rem;
  background-color: transparent;
  height: 15px;
  background-color: transparent;
  border-bottom-color: transparent;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.nav a:hover {
  border-bottom-color: black;
}
h2 {
  text-align: center;
  position: relative;
  padding: 0px;
  font-size: 3rem;
  z-index: 2;
  top: 240px;
  color: #ffffff;
  filter: drop-shadow(10px 11px 14px #f0f0f0);
}
svg {
  position: absolute;
  bottom: 0;
}

img {
  position: absolute;
  top: 15vh;
  left: 0;
  right: 0;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  height: 400px;;
  filter: drop-shadow(2px 4px 6px rgb(109, 109, 109));
}

#loading {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 30vh;
  justify-content: center;
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #FC70AF; /* Blue */
  border-radius: 50%;
  border-width: 1px;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@media only screen and (max-width: 600px) {
  img {
    top: 30vh;
    height: 280px;
  }
  svg {
    position: absolute;
    bottom: 0;
    z-index: -1;
  }
  h2 {
    color: black;
    font-size: 2rem;
    padding: 16px;
    top: 200px;
  }
  h1 {
    left: -20px;
    font-size: 3.5rem;
  }
  .nav a:nth-child(1) {
    display: none;
  }
  .nav a:nth-child(2) {
    display: none;
  }
  .nav a:nth-child(3) {
    display: none;
  }
  .nav a:nth-child(4) {
    padding: 10px;
    right: -35px;
    position: relative;
  }
}