html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #F7F7F6;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-kerning: normal;
    font-weight: 100;
    font-family: "Times New Roman", Times, serif;
    text-align: center;
}

.container p {
    transform: translate(0, -4px);
}

@media screen and (min-width: 768px) {

    .mobile-break {
        display: none;
    }

    .container {
        font-size: 1.14rem;
    }

}