body {
    font-family: "Open Sans", sans-serif;
    display: flex;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    background-color: var(--background-color);
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
}

.preloader {
    position: absolute;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    z-index: 2;
    height: 100%;
    width: 100%;
    background-color: var(--preloader-color);
    transition: opacity .75s ease, visibility .75s ease;
}

.preloader.loaded {
    visibility: hidden;
    opacity: 0;
}

.author {
    padding: 5vh 5vw;
}

.author p {
    margin: 0;
}

.author img.logo {
    height: 40vh;
    width: auto;
}

.author img.logo.round {
    border-radius: 50%;
}

.author p.name {
    font-weight: bold;
    font-size: 3.5vh;
    margin-top: 4vh;
    margin-bottom: 2vh;
}

.author p.description {
    font-size: 1.6vh;
}

.author .media {
    position: relative;
    margin-top: 3vh;
}

.author .media .social {
    position: relative;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 .25vw;
    background-color: var(--foreground-color);
    height: 5vh;
    width: 5vh;
    font-size: 2.5vh;
    border-radius: 50%;
    color: inherit;
    text-decoration: none;
    transition: top .25s ease, box-shadow .25s ease;
}

.author .media .social:hover {
    top: -.5vh;
    box-shadow: 0 1vh 1vh rgba(0, 0, 0, .3);
}