/* variable properties */
:root {
    --background-color: #9090bc;
    --foreground-color: #000000;
    --font-size: 1.1em;
}

body {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--font-size);
    background-color: var(--background-color);
    color: var(--foreground-color);
}

.page {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 65vw;
    margin-left: 10vw;
}

@media only screen and (max-width: 1330px) {
    .page {
        width: 90%;
        margin-left: 3vw;
    }
}

.page_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.avatar {
    width: 25%;
    height: auto;
    border-radius: 50%;
    align-self: center;
}

@media only screen and (max-width: 600px) {
    .avatar {
        width: 50%;
    }
}

.box {
    margin: 1vw;
    text-align: left;
    border: 1px;
    border-style: solid;
    border-radius: 1.5vw;
    padding: 2vw;
}

a {
    text-decoration: underline;
    color: var(--foreground-color);
}

p {
    /* Aim for ~12 words per line for good readability.  */
    max-width: 60vw;
    margin: 2vw 1vw;
}

p.centered {
    margin-left: auto;
    margin-right: auto;
    width: 10em;
}
