*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    color: #EDF5E1;
    background-color: #5CDB95;
}
h1, h2, h3 {
    font-family: 'Segoe UI', sans-serif;
    line-height: 180%;
}
h1 {font-size: 40px;}
h2 {font-size: 32px;}
h3 {font-size: 24px;}
p, li {
    font-family: 'Roboto', sans-serif;
    line-height: 180%;
}
ul{
    list-style-type: circle;
}

/* Navbar */
.navbar{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    position: fixed;
    background-color: #8EE4AF;
    color: #05386B;
}
.name-nav {flex: 7;}
.buttons-nav{
    flex: 2;
    display: flex;
    justify-content: space-evenly;
}
button{
    padding: 14px 24px;
    border-radius: 4px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
    background-color: #EDF5E1;
    color:#05386B;
}
button:hover{
    background-color:#05386B;
    color: #EDF5E1;
}

/* Hero Section */
.hero-section{
    padding-top: 14%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color: #EDF5E1;
    color: #5CDB95;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.08);

}
#hero-img{
    margin: 5%;
    width: 20%;
    border-radius: 50%;
}

/* Main */
.main{
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.about-me, .languages {margin: 5% 15% 0;}
.interests, .short-goals, .long-goals{
    margin: 10px 15%;
}
.languages{
    margin: 5% auto;
    padding: 50px 70px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color: #EDF5E1;
    color:#05386B;
}
.languages li:hover{
    font-weight: bolder;
}

/* Footer */
.footer {
    display: flex;
    flex-flow: column nowrap;
    background-color: #05386B;
    text-align: center;
}
