@import url('https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap');

body {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    background: #1D4350;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #A43931, #1D4350);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #A43931, #1D4350); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.virgil-profile {
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10%;
    width: 65%;
    height: 500px;
    box-shadow: 10px 10px rgb(0, 0, 0);
}

.profile-picture {
    padding: 0;
    width: 100%;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-bio {
    height: 100%;
    background-color: #ffffff;
    padding: 5% 20px;
}

.profile-bio h1 {
    text-align: center;
    margin-bottom: 10%;
}

.profile-bio p {
    text-align: justify;
}

.profile-bio ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

.profile-bio ul li {
    display: inline;
    margin-right: 15px;
}

.profile-bio img {
    width: 7.5%;
    transition: all .5s
}

.profile-bio img:hover {
    width: 10%;
}

footer p {
    color: white;
    text-align: center;
}

footer a {
    color: #54ade9;
}


@media screen and (max-width: 932px) {

    .profile-bio h1 {
        font-size: 28px;
    }

    .profile-bio p {
        font-size: 0.90em;
    }

    .profile-bio img {
        width: 10%;
    }

}

@media screen and (max-width: 766px) {
    .virgil-profile {
        box-shadow: none;
    }
}

@media screen and (max-width: 415px) {
    .profile-bio h1 {
        font-size: 24px;
    }

    .profile-bio p {
        font-size: 0.80em;
    }
}

@media screen and (max-width: 350px) {
    .profile-bio h1 {
        font-size: 24px;
    }

    .profile-bio p {
        font-size: 0.80em;
    }
}
