html {
    box-sizing: border-box;
}

h2, a#retorne-ao-inicio, h2.section-title { 
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

body {
    background-color: #5c88c4;
    font-size: 16px;
    width: 85%;
}

/*Navigation Styles*/

.navigation {
    font-size: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: lighter;
    background-color: inherit;
    opacity: 0.75;
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
}

.navigation li, p {
    padding: 0 20px;
    display: inline-block;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

a.menu-itens, li.skills-itens, a#retorne-ao-inicio {
    text-decoration: none;
    color: white;
    font-family: 'Courier New', Courier, monospace;
} 

/*Menu-Nav Bar. Uso do seletor hover. Fonte: https://www.w3schools.com/cssref/sel_hover.asp */

a.in-text-links {
    color: white; 
    text-decoration: underline;
}

a:hover, a#retorne-ao-inicio:hover{
    color: aquamarine;
}

ul.lista-skills, li.skills-itens {
    letter-spacing: 1px;
    font-weight: 400; 
    text-align: center;
    list-style: none;
}

/*Main Sections*/

div#box-logo-do-site, div#sobre, div#contato, div#skills, div#projects {
    height: 100vh;
    width: 100vw;
    padding: 60px;
}

div#box-logo-do-site, #logo-do-site {
    align-items: center;
    padding-left: 90px;
}


div#sobre, div#projects, footer {
    background-color: #5CB8E0;
}
/*Headings*/
 h2.section-title {
    color: white;
    text-align: center;
    font-size: 3rem;
}

/*Footer*/
footer#footer-container {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    width: 100vw;
    height: 40vh;
    margin: 0;
    padding: 0;
}
/*Content-Container*/

.content-container {
    display:flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 60px, 40px;
}


p {
    font-size: 1.50rem;
    font-weight: 200;
}

#profile-photo {
    flex-basis: 10%;
    width: 350px;
    height: auto;
    box-shadow: white 2px 2px 1px;
    border-bottom-left-radius: 42%;
    border-top-right-radius: 44%;
    padding: 15px;
}

div#profile-photo-container {
    width: 80vw;
    height: 60vh;
    padding: 30px;
    background-color: rgba(89, 158, 247);
    border-bottom-left-radius: 40%;
    border-top-right-radius: 44%;
    box-shadow: white 2px 2px 1px;
}


h2  {
    text-align: center;
    color:white;
    letter-spacing: 1px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    padding: 30px;
    font-size: 1.25rem;

}

span#destaque-profile {
    font-weight: 700;
    font-size: 2.3rem;
    color: white;
    margin: 0;
    padding: 0;
}

span#location {
    font-weight: 900;
    color:#5347C4;
}

div.skills-section {
    flex-basis: 80%;
    align-items: center;
    margin: 30px;
    border-radius: 15%;
    justify-content: center;
    background-color: rgb(120, 211, 214);
    padding: 30px;
    padding-right: 40px;
    box-shadow: white 3px 2px 1px ;
    height: 60vh;
    width: 50vw;
    text-emphasis-style:initial;
}

h3 {
    font-size: 2.5rem;
    font-family: 'Courier New', Courier, monospace;
    color: #5347c4;
    text-align: center;
}

h4 {
    font-size: 1.35rem;
    text-align: center;
    font-weight: 100;
}


li.skills-itens {
    font-size: 1.9rem;
    color:#004aad;
}

ul li.skills-itens:nth-child(odd) {
    font-weight: 800;
    color: #004aad;
    font-size: 1.5rem;
}

/*Formulário Seção Contact*/
input#name, input#email, textarea {
    background-color:rgb(120, 211, 214);
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    opacity: 0.75;
    border-style:dashed;
    text-align: center;
    padding: 10px;
    margin: 5px;
    display: inline-flex;
}

textarea {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 140px;
    margin: 5px;
}


input#submit-info {
    border-style:dashed;
    text-align: center;
    background-color:rgb(120, 211, 214);
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
}

footer#footer-container div a#retorne-ao-inicio {
    font-size: 1.2rem;
    color: white;
}


#clearfix {
    clear: both;
}

ul li.skills-itens::before {
    content: "⇨ "  
}