body {
  background: #f8f8f8;
  font-family: "Inter", sans-serif;
}

main {
  margin: 1rem;
  padding: 1.5rem;
  text-align: center;
}

main img {
  max-width: 800px;
  width: 100%;
}

main h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.075rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

main h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 300;
}

main p {
  text-align: left;
  line-height: 1.5rem;
  margin: 0;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
}

.social {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}

.social > a {
  color: #fff;
  text-decoration: none;
}

.social > a:hover {
  color: #000;
  transition: 0.2s;
}

.social > a .icon {
  background: #000;
  transition: 0.2s;
}

.social > a:hover .icon {
  background: #f8f8f8;
  transition: 0.2s;
}

.icon {
  align-items: center;
  background: #f8f8f8;
  border-radius: 50%;
  display: flex;
  font-size: 1.25rem;
  height: 2.5rem;
  justify-content: center;
  transition: 0.2s;
  width: 2.5rem;
}

@media only screen and (min-width: 768px) {
  #app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
  }

  main {
    display: flex;
    margin: 1rem auto;
    min-width: 750px;
    width: 50%;
    background: white;
  }

  main img {
    align-self: center;
  }

  main img {
    width: 50%;
  }

  main > * {
    flex: 1;
  }

  main .content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
}
