body {
    background-image: url('../img/background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}

.content {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    text-align: center;
    padding-top: 15%;
}

.content img {
    width: 70%;
    margin-bottom: 40px;
}

.content p {
    color: white;
    font-size: 3.75rem;
    font-weight: bold;
    margin: 0;
}

@media screen and (max-width: 576px) {
    .content {
        width: 100%;
        padding-top: 50%;
    }
}

@media screen and (max-width: 768px) {
    .content {
        width: 100%;
        padding-top: 50%;
    }

    .content p {
        font-size: 2rem;
    }
}

@media screen and (max-width: 992) {
    .content {
        width: 100%;
        padding-top: 50%;
    }

    .content p {
        font-size: 2rem;
    }
}