@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap");
html {
  font-optical-sizing: auto;
  font-style: normal;
  margin: auto;
}

.container {
  font-family: "Newsreader", serif;
  font-weight: 400;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.name {
  font-family: "Manrope", sans-serif;
  font-weight: 200;
  letter-spacing: 1px;
  font-size: 3.6rem;
  margin-bottom: 8px;
}

.others {
  margin: 0 auto 0;
  font-size: 1.4rem;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

@media screen and (max-width: 650px) {
  .container {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .name {
    font-size: 2.2rem;
  }
  .others {
    font-size: 1.2rem;
  }
  nav {
    padding-top: 1em;
    flex-direction: column;
    align-items: flex-start;
  }
  .brackets {
    display: none;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.fadeInUp-animation {
  animation: 1.5s fadeInUp;
  transition-timing-function: ease-in-out;
}

/*# sourceMappingURL=home.css.map */
