* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", sans-serif;
  margin: 30px 10px;
  font-size: 1.1rem;
  text-wrap: pretty;
}
/* ::selection {
  background-color: rgba(255, 0, 0, 0.75);
  color: black;
} */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero img {
  height: 150px;
  flex-grow: 0;
}
.hero .logo {
  font-family: "Bokor", system-ui;
  /* font-family: "Caveat Brush", cursive; */
  font-size: 4rem;
  line-height: 3rem;
  text-align: center;
  margin-top: 20px;
}
.hero .desc {
  margin-top: 10px;
  font-size: 1.4rem;
  color: gray;
  font-weight: 300;
}
#hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: black;
  background-color: gold;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 26px;
  margin-top: 30px;
  border-radius: 6px;
  transition: all 0.1s;
}
#hero-cta img {
  height: 20px;
}
#hero-cta:hover {
  transform: scale(105%);
}
.screenshot {
  margin-top: 20px;
}
.screenshot img {
  width: 100%;
  max-width: 700px;
}
.info {
  margin-top: 40px;
}
li {
  margin-top: 6px;
}
