body{
    margin: 0;
    padding: 0;
}

.mainContent{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

.bioContainer{
    display: block;
    text-align: center;
    align-items: center;
}

h1{
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 3em;
}

h3{
    font-family: 'Young Serif', serif;
    font-weight: 400;
    font-size: 1.1em;
}

.socialLinks a{
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 5px ;
}

.infoRow{
    display: flex;
    flex-direction: row;
    justify-content:center;
}

.infoRow a{
    color: #000000;
    padding: 15px;
    text-align: center;
    font-size: medium;
    font-family: 'Young Serif', serif;
}

.aboutMeInfo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20%;
}

.aboutMeInfo p{
    font-size: medium;
    font-family: 'Young Serif', serif;
    font-weight: 300;
    font-style: normal;
    text-align: center;
}

.aboutMeInfo hr{
    width: 50%;
    margin: 10px;
}

.aboutMeInfo a, a:visited{
    color: #000000;
    text-align: center;
    font-size: 1.3em;
}

.resumeInfo{
    font-family: 'Young Serif', serif;
}

.resumeInfo h2{
    margin-top: 35px;
    margin-bottom: 10px;
}

.resumeInfo a, a:visited{
    color: #000000;
    text-align: center;
    font-size: 1.3em;
}

.imgMe{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 10px;
    border-color: #000000;
    border-style: solid;
    border-width: 3px;
}

@media only screen and (max-width: 750px) {
    .aboutMeInfo{
        margin: 20px;
    }
    .imgMe{
        width: 100px;
        height: 100px;
    }
}