html, body {
    font-family: 'Erode-Regular', 'Recia-Light', 'Source Sans Pro', sans-serif;
    font-weight: 400; 
    overflow: hidden;
    font-size: 20px;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

h1 {
    font-size: 1.5em; 
    margin: 0.8em 0;
    text-align: center; 
}


a {
    text-decoration: none;
    color: #688551;
}

a:hover {
    color: #688551;
}

#content {
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    text-align: justify;
    max-width: 500px;
    padding: 20px;
    line-height: 1.2em;
    user-select: none;
    box-sizing: border-box;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: x-small;
}


.avatar {
    border-radius: 50%;
    width: 10em;
    height: 10em;
    display: block;
    margin: 0 auto 2em auto;
}

.icons {
    list-style-type: none;
    font-size: 24px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    width: 35%;
    max-width: 500px;
    margin: 0.5em auto;
    text-align: center;
}


.icons li {
    display: inline;
    width: 42px;
}

.icons a {
    color: black;
}

.icons a:hover {
    color: #688551;
}


@media (max-width: 840px) {
    .icons {
        width: 60%; 
        max-width: 350px;
    }
    
    #content {
        padding: 8px;
        line-height: 1.2em;
        max-width: calc(100vw - 40px);
        width: calc(100vw - 40px);
    }
    
    .avatar {
        width: 8em;
        height: 8em;
    }
}