@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

/* Reset margin and make body fill the viewport */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Yeseva One', serif;
    background-color: #fff;
}

/* Center the content in the viewport */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.content {
    text-align: center;
}

.content h1 {
    margin: 0 0 2rem 0;
    font-size: 56px;
    color: #000000;
    font-family: "roboto-flex", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

.content a {
    color: #000000;
    text-decoration: none;
    font-family: "Crimson Text", serif;
    font-size: 28px;
    font-weight: 400;
    display: block;
    transition: opacity 0.2s ease;
    margin-bottom: 1rem;
}

.content a:hover {
    opacity: 0.7;
}

.content p {
    font-family: "crimson-text-regular", serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.6;
    margin: 0.5rem 0 0 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.content a p {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.content a:hover p {
    opacity: 0.7;
}

@media screen and (min-width: 900px) {
    .content p {
        font-size: 21px;
    }
}