/*Color Palette
rgb(25,247,172) - lime green
rgb(9,89,62) - dark lime
rgb(9,89,133) - blue
rgb(238,183,72) - golden rod

#ffbc42 - golden rod
#006ba6 - powder blue
#bf4342 - terracotta
#8c1c13 - dark red
#3d3522 - olive green
#262626 - dark gray 

    font-family: 'Orbitron', sans-serif;
    font-family: 'Righteous', sans-serif;
*/

/*Global styles
------------------------*/

/*box model fix*/
html {
    box-sizing: border-box;
    min-width: 568px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background: #262626;
    color: white;
    font-family: 'Righteous', sans-serif; 
    background-image: url(../images/carbonfiberr.png);
}
.content-wrap {
    max-width: 90%;
    margin: 0 auto;
    padding: 10px;
    overflow: auto;
}

a:hover {
    text-decoration: none;
}
h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}
h2, h3, h4, h5 {
    margin-top: 0;
}

li {
    background: #3d3522;
    max-width: 80%;
    padding: 1px;
    margin: 1px auto;
    line-height: 2;
    display: block;
}
li a {
    line-height: 1.8;
    color: #ef233c;
}
.circle {
    float: left;
    shape-outside: circle(50%);
    border-radius: 50%;
    width: 150px;
    height: 150px;
}
.circle {
    clip-path: circle();
    background: url(../images/profile2.jpg) no-repeat center;
    margin: 20px;
}
circle {
    clip-path: circle();
    margin: 10px;
}
.box {
    margin: 10px 0;
}
/* Navigation using display
------------------------
.display {
    text-align: center;
    font-size: 0;
}
.display a {
    padding: 10px;
    display: inline-block;
    width: 24%;
    font-size: 16px;
}
 Navigation using float
------------------------
.float {
    overflow: hidden;
    text-align: center;
}
.float a{
    float: left;
    padding:10px;
    width: 25%;
}
 Navigation using display
------------------------*/
nav {
    text-align: center;
    background: #3d3522;
}

nav a {
    display: inline-block;
    padding: 15px 20px;
    color: #ef233c;
    text-transform: uppercase;
}
/* Navigation using FLEXBOX
------------------------*/

/*header & footer 
-----------------------*/
header, footer {
    background: rgba(25,247,172,0.8);
    color: #262626;
}
header h1 {
    color: white;
    text-align: left;
    margin: 0;
}
footer {
    line-height: 1.8;
    font-size: .8em;
    text-align: center;
}
.contact-info a {
    padding: 10px;
    display: inline-block;
}
.profile-img {
    width: 150px;
    border-radius: 50%;
    float: left;
    margin: 10px;
}
.title {
    text-align: center;
}


/*Projects
-----------------------*/
.projects {
    background: #bf4342;
}


/*Education
-----------------------*/
.education {
    background: #ffbc42;
}

/*screen size changes
-----------------------*/
@media (min-width: 445px){
    
}
@media (max-width: 899px){
    
}
