* {
    padding: 0;
    margin: 0;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 20vh;
}

.logoimpress {
    height: 100%;
}

.logosvg {
    height: 19vh;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    padding: 20px;
    font-family: 'lato', sans-serif;
}

.inner {
    width: 80%;
    overflow: hidden;
}

.pageTitle {
    padding: 50px 0px;
    font-size: 2.5rem;
}

.backlink {
    padding: 30px 0px;
    font-size: 1.5rem;
}

.backlink:hover {
    color: black;
}

.title {
    font-size: 2rem;
    padding: 20px 0px;
}

.inner p strong {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 50px;
}

.inner p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 20px;
}

.inner a {
    color: rgb(126, 0, 199);
}

footer {
    margin-top: 100px;
    background-color: rgb(204, 176, 221);
}

@media only screen and (max-width: 850px) {
    .logosvg {
        width: 100vw;
    }

    .pageTitle {
        font-size: 2rem;
    }
    
    .backlink {
        font-size: 1.2rem;
    }
    .title {
        font-size: 1.8rem;
    }
    
    .inner p strong {
        font-size: 1.3rem;
    }
    
    .inner p {
        font-size: 0.9rem;
    }

    .inner {
        width: 100%;
    }

    .content {
        padding: 10px;
    }
}