body {
    margin: 0;
}

.background {
    background-image: url(../img/background.png);
    background-size: cover;
    width: 100%;
    min-height: 100vh;
}

@media only screen and (max-width: 720px) {
    .background {
        background-image: url(../img/responsiveBackground.png);
    }
}

.content {
    background-image: url(../img/Content.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}