:root {
    --navarea-bg-color: white; /* // #4CDDFE;*/
    --main-area-bg-color: #FFFFFF;
    --bio-font-color: #4CDDFE;
    --website-font: "Menlo", "Monaco", "Consolas" ,"Liberation Mono","Courier New",monospace;
    --off-white: #F8F8FF;
}

body {
  width: 100vw;
  height: 100vh;
}

.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.pro-pic {
    border-radius: 150px;
    width: 190px;
    height: 185px;
}

.website-area {
    display: flex;
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
}

.top-nav-bar {
    display: flex;
    flex: row;
    align-items: center;
    background-color: var(--main-area-bg-color);
    height: 75px;
    width: 100%;
    border-bottom: 1px solid #4CDDFE;
}

.top-nav-bar__item {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--bio-font-color);
    margin: 5px;
    text-decoration: none;
}

.top-nav-bar__nonlist {
    flex: 1;
    flex-direction: row;
    background-color: var(--off-white);
}

.top-nav-bar__navlist {
    flex: 1;
    flex-direction: row;
    align-items: center;
}

.top-nav-bar__item:hover {
    text-decoration: underline;
}

.media-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.name-legend {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.span-font {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--bio-font-color);
}

.pre-legend-button {
    font-size: 16px;
}

.pre-legend-button:hover {
    opacity: 0.5;
}

.nav-area {
    display: flex;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    background-color: var(--off-white);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

.grow {
    transition: all .2s ease-in-out;
}

.grow:hover { transform: scale(1.4); }

.fade-in {
    animation: fadeIn 5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.media-icons-legend {
    display: flex;
    flex-direction: row;
    margin-top: 10px;

}


.media-icon {
    width: 25px;
    height: 25px;
    margin: 5px;
}

.media-icon:hover {
    text-decoration: underline var(--bio-font-color);
}

.main-area {
    display: flex;
    background-color: var(--main-area-bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

@media only screen and (max-width: 600px) {
    .website-area {
        display: flex;
        flex: 1;
        flex-direction: column;
        flex-wrap: wrap;
        height: 100%;
        width: 100%;
    }

    .nav-list {
        display: none;
    }
}

.pre-social-media-legend {
    display: flex;
    flex-direction: column;
}

.bio {
    border: 1px solid #4CDDFE;
    margin-top: 90px;
    padding: 30px;
    width: 80%;
    box-shadow: 6px 6px 6px 1px rgba(109, 126, 133, 0.37);
}

.bio p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--bio-font-color);
    display: block;
}

p:hover {
    text-decoration: underline solid var(--bio-font-color);
}