body, html {
    font-family: sans-serif;
    height: 100vh;
    position: relative;
}

.content {
    margin: auto;
    position: relative;
    height: 100%;
}

.content h1 {
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    font-size: 6vw;
    color: grey;
    width: 100%;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    line-height: .85;
    font-family: maple-web, sans-serif;

font-weight: 700;

font-style: normal;
}
.content img {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2) rotate(-5deg);
}
.content img.paper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2) rotate(-5deg);

}

@media screen and (max-width: 420px) {
    .content img {
        transform: translate(-50%, -50%) scale(1) rotate(-5deg);
    }
    .content img.paper {
        transform: translate(-50%, -50%) scale(1) rotate(-5deg);
    }
    .content h1 { 
        font-size: 12vw;
    }
}
