:root {
    color-scheme: light dark;
}

* {
    font-family: "Open Sans";
    background-color: light-dark(white, #1b1a18);
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: space-between;
    gap: 1em;
}

a {
    color: light-dark(black, white);
    text-decoration: none;
}

a:hover, #about {
    color: light-dark(#676b63, #c5c9c1);
}

#main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5em;
}

#header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 1em;
}

#pfp {
    border-radius: 50%;
    width: 10em;
    margin: 1em;
    /* TODO: spin PFP on click? */
}

#name {
    font-size: 1.5em;
    text-align: center;
    letter-spacing: 0.15em;
    width: 100%;
}

#about {
    font-size: 1em;
    width: 60%;
    padding-left: 1em;
    padding-right: 1em;
/*    border: 1px solid;
    border-color: light-dark(#dddddd, #333333);*/
}

#links {
    display: flex;
    align-items: center;
    gap: 1em;
}

#updated {
    font-size: 0.75em;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    height: 3em;
/*    border-top: 1px solid;
    border-color: light-dark(#dddddd, #333333);*/
    color: light-dark(#aaaaaa, #666666);
}

.icon {
    font-size: 1.5em;
}

@media only screen and (max-width: 47.5em) {
    #pfp {
        width: 7.5em;
    }

    #about {
        width: 75%;
/*        border: 0;*/
    }

/*    #updated {
        border: 0;
    }*/
}
