/*
    Portfolio (mobile)
    Define in index.html (header) for Header -> Mobile as CSS
    The mobile will override the Desktop layout (default) for certain elements
*/

body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.nav-bar{
    font-weight: bold;
    font-size: 20px;
    padding: 10px 20px;
    justify-content: center;
}

.content_section{
    min-height: 100vh;
    
    background-color: inherit;
    box-sizing: border-box;
}

#introduction_subsection_content{
    display: flex;
    justify-self: center;
    text-align: center;
    font-size: 30px;
    margin: 0 20px;
}

#quote_content{
    text-align: center;
    font-size: 20px;
    margin: 20px;
}

#biography_content{
    margin: 0 5% 0 5%;
}

.biography_subsection_content{
    font-size: 20px;
}

.socials_subsection_content{
    padding: 0;
}

.socials_subsection_content img{
    height: 75px;
    width: 75px;
}

.projects_subsection_content{
    padding: 0 10% 80px 5%;
}

.projects_subsection_content p{
    margin: 0 0 25px 10px;
    font-size: larger;
}

.project_github_link{
    font-weight: bolder;

    display: flex;
    flex-direction: column;

    margin: 20px 20px 20px 10px;
    width: 30%;
    text-align: center;
}

#project_subproject_content{
    margin: 0 5% 0 5%;
}

#project_subproject_description_content{
    font-size: large;
}

#project_subproject_link{
    display: flex;
    justify-content: center;

    padding: 16px 36px;
    width: 10%;
    font-size: 30px;
    margin: 10px 10px 10px 0px;
}
