/*******
 *
 *  GENERAL STYLES
 *
 *******/
body {
    margin: 0;
    padding: 0;
    background-color: #563f46;
    font-family: 'Quantico', sans-serif;
    font-size: 18px;
}
#body-style {
    margin: 50px auto;
    padding: 0;
    border: 2px solid black;
    border-radius: 15px;
    max-width: 600px;
    background-color: #484f4f;
}

.familypic {
    max-height: 400px;
    max-width: 100%;
    min-width: 140px;
}

@media only screen and (min-width: 900px) {
    #body-style { 
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row;
        max-width: 1200px;
    }    
    .about-me, .future  {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        max-width: 900px;
    }    
    .why-im-here, .free-time  {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        max-width: 400px;
    }    
    #home-nav ul li {
        max-width: calc(20% - 10px);
        justify-content: center;
        color: white;
        text-decoration: none;
        display: flex;
        flex-direction: row;
     }
}

/*******
 *
 *  NAVIGATION
 *
 *******/

 header {
    background: #333;
    color: #fff;
 }

 .home-nav {
    padding: 10px 20px;
    max-width: 1200px;
    margin: auto;
 }
 #home-nav ul li {
    width: 100%;
    justify-content: center;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: row;
 }
a:hover {
    opacity: .6;
}
#home-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
}
nav ul li a{
    color: #fff;
    text-decoration: none; 
    padding: 1em 1.5em;
    margin: 10px 20px;
    text-transform: uppercase;
    font-size: 15px;
}


/*******
 *
 *  ABOUT ME
 *
 *******/
 .about-me, .why-im-here, .free-time, .future {
    background-color: #8ca3a3;
    margin: 35px 20px;
    padding: 30px;
    border: 1px solid black;
    border-radius: 15px;
    box-shadow: 5px 10px 19px grey;
    text-align: center;
}


a {
    text-decoration: none;
    color: #484f4f;
}
a:hover {
    color: rgb(218, 218, 218);
}
.paragraph-content {
    text-align: justify;
}

/*******
 *
 *  FREE TIME
 *
 *******/

 .hobbies {
    text-align: left;
    width: 50%;
    min-width: 50px;
    margin: auto;
 }

 /*******
 *
 *  FOOTER
 *
 *******/

 footer {
    background: #333;
    color: #fff;
 }

 .footer-inner {
    padding: 10px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
 }