* {
    box-sizing: border-box;
}
/* smooth scrolling added*/
html{
    scroll-behavior: smooth;
}
body{
    text-align: center;
    font-family: monospace;
    margin: auto 0;
    width: 100%;
    height: 100%;
    line-height: 1.5;
    display: flexbox;
    overflow:scroll;
    background-color: rgba(211, 211, 211, 0.65)
}
nav{
    
    position: fixed;
    width: 100%;
    top:0;
    background-color:white;
}
.nav ul{
    list-style: none;
}
.nav li{
    display: inline;
    padding: 5px 25px;
    font-family: monospace;
    font-size: 1.5em;
}
a{
    text-decoration: none;
    color: gray;
    background-color: transparent;
}
a:hover{
    color:darkblue;
    border-bottom: 2px solid darkblue;
}
#profile,#education,#work-experience,#skills,#referees,#contact-me{
    display: block;
    margin:auto 3%;
    height: auto;
    padding-top: 5%;
}
#education ul,#work-experience ul,#skills ul,#referees ul{
    text-align: justify;
}
h1{
    font-size: 3em;
}
h3{
    font-size: 2em;
    color:darkblue;
    opacity: 0.9;
    font-weight: 700;
}
p{
    font-size: 1.3em;
}
#skills li{
    font-size: 1.1em;
}
span{
    float: right;
    font-size: 1em;
}
progress[value]{
    width: 50%;
    height: 10px;
    background-color: blue;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
    margin-left: 50px;
}
strong{
    color: darkblue;
}
footer{
    margin: auto 0;
}
footer ul{
   list-style: none;
}
.social li{
   display: inline;
   padding: 0 20px;
}
#contact-me{
   

}
.contact{
   justify-content: center;
   align-items: center;
   margin: auto 0;
}
input,textarea{
width: 400px;
font-size: 20px;
color: darkblue;
padding: 1em;
outline: none;
border: 2px solid darkblue;
background-color: transparent;
}
input:focus, textarea:focus{
   background-color: darkblue;
   color:white;
}
input{
height: 50px;
margin-bottom: 5px;
}
button {
min-width: 150px;
height: 50px;
outline: none !important;
border: 2px solid darkblue;
background: transparent;
border-radius: 25px;
font-size: 1.2em;
justify-content: center;
align-items: center;
transition: all 0.4s;
color: darkblue;
}

button:hover {
cursor: pointer;
background-color: darkblue;
color: white;
}
textarea{
    overflow: hidden;
}
/*media queries*/
/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
