html {
    width: 100%;
    height: 100%;
}

body {
    color: black;
    font-family: 'Montserrat', sans-serif;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    background-repeat: repeat;
}

.content {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

img {
    width: 200px;
}

h1 {
    color: #aaa89a;
    font-weight: 900;
    font-size: 2.5rem;
    margin: 2rem;
}

p {
    font-size: 1.2rem;
}

p a {
    margin: 15px;
    display: block;
    color: black;
}

@media (max-width: 320px) {
    img {
        max-width: 100px;
    }
    h1 {
        font-size: 1.7rem;
    }
    p {
        font-size: 0.8rem;
    }
    a {
        margin: 10px;
        display: block;
    }
}