body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    font-family: "Mulish";
    background-color: #fff;
    color: #000;
    margin: 0;
}

body .content {
    text-align: center;
    padding: 0 20px;
}

body .content .logo {
    width: 300px;
    margin-bottom: 30px;
}
body .content h1 {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 800;
}
body .content p {
    font-weight: 600;
    font-size: 1.25rem;
}

@media screen and (min-width: 991px){
    body .content .logo {
        width: 400px;
        margin-bottom: 50px;
    }
    body .content h1 {
        font-size: 2.5rem;
    }
}