* {
  box-sizing: border-box;
}

::selection {
  background-color: #000;
  color: #fff;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 20px;
  text-align: center;
}

.site-title {
  margin-top: 15vh;
  font-style: italic;
  font-weight: 900;

}

.site-title__intro {
  display: block;
  font-size: 3rem;
  font-style: normal;
  font-weight: 800;
}

@media screen and (max-width: 480px) {
  .site-title__intro {
    font-size: 3rem;
  }
}

.site-title__name {
  display: block;
  font-size: 7rem;
}

@media screen and (max-width: 480px) {
  .site-title__name {
    font-size: 5rem;
  }
}

.site-description {
  margin: 1.5rem 0 4rem;
  font-weight: 600;
}

.site-description::after {
  content: "";
  margin-left: .3rem;
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background-image: url('../emojis/seedling.png');
  background-size: contain;
}

.site-cta {
  display: block;
  padding: 1rem 1.5rem 1.1rem;
  border-radius: 5rem;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
}

@media screen and (max-width: 480px) {
  .site-cta {
    transform: scale(0.95);
  }
}

.site-cta::before,
.site-cta::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url('../emojis/sparkles.png');
  background-size: contain;
}

.site-cta::before {
  margin-right: .3rem;
}

.site-cta::after {
  margin-left: .3rem;
}

.site-socials {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.site-socials__icon {
  margin: 0 .5rem;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  transition: transform .07s ease;
}

.site-socials__icon:hover {
  transform: scale(1.07);
}

.site-socials__icon a {
  color: inherit;
}

.site-socials__icon svg {
  width: 100%;
  height: 100%
}
