@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@300;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 300;
  font-family: "Overpass", Courier, monospace;
  -webkit-font-smoothing: antialiased;
  color: white;
}

:root {
  background-color: black;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("./public/dark.webp");
}

nav {
  display: flex;
  padding-top: 12px;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  border-bottom: 1px solid #777;
  width: 100%;
}
nav li {
  list-style: none;
}
nav li a {
  text-decoration: none;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero img {
  -o-object-position: center;
     object-position: center;
}

.container {
  max-width: 1200px;
}

.notes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 4rem 0;
}

ul,
ol {
  line-height: 220%;
  margin-left: 2rem;
  font-size: 18px;
}

.note {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.note .title {
  font-family: "Overpass";
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.02em;
}
.note .desc {
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 0.02em;
  font-size: 18px;
}
.note a {
  color: #1da1f2;
}
.note a:visited {
  color: #1da1f2;
}

@media only screen and (max-width: 600px) {
  nav {
    padding: 0 2rem;
    padding-top: 10px;
  }
  .hero img {
    width: 100%;
    height: 100%;
    transform: scale(1.5);
  }
  .container {
    padding: 2rem;
  }
  ul,
  ol {
    margin-left: 1rem;
  }
}/*# sourceMappingURL=style.css.map */