body {
    font-family: 'Poppins', sans-serif;
  }

.main-page{
    display: grid;
    place-items: center;
    height: 90vh;
}
.container{
    display: block;
    text-align: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: .5rem;
}
.container div h1{
    margin: 1rem 0;
}
.container div p{
    margin: 0;
}
.container div:last-child{
    max-width: 50rem;
    text-align: center;
    align-self: center;
}
@media only screen and (max-width: 720px) {
    h1 {
      font-size: 1.5rem;
    }
  }