body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-image: linear-gradient(grey,white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo img {
    max-width: 20rem;
}
.content {
    margin-top: 5rem;
    max-width: 80vw;
    font-size: x-large;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width: 750px) {
    .content {
        margin-top: 1rem;
    }
    h1, p {
       margin-top: 0; 
    }
}