:root {
    font-size: 16px;
    /* Set a default root font size */
}

* {
    font-family: Arial, Helvetica, sans-serif;
}


html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}


.content h1 {
    font-size: 1.2rem;
    margin: 0;
}

.content p {
    margin: 0.5rem 0;
    font-size: 0.8rem;
}

.content a {
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
}

.content a:hover {
    text-decoration: underline;
}

@media (max-width: 64rem) {
    .content h1 {
        font-size: 8vw;
    }

    .content p {
        font-size: 4vw;
    }

    .content a {
        font-size: 4vw;
    }
}