*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html, body{
    width: 100%;
    height: 100%;
}

#name{
    text-align: center;
    background-color: rgb(68, 97, 179);
    padding: 40px;
    color: #fff;
}

#name h1{
    font-size: 70px;
    text-transform: uppercase;
}

#name h3{
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 100;
}

#about{
    width: 70%;              
    background-color: whitesmoke;  
    margin: 30px auto;
    text-align: center;   
    padding: 40px;
    border-radius: 5px;
}

#about h2{
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

#about p{
    font-size: 17px;
}

#education{
    width: 70%;
    margin: 30px auto;
    text-align: center;   
    padding: 40px;
    background-color: aquamarine;
    border-radius: 5px;
}

#education h2{
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

#education ul{
    list-style: none;  
}

#education li{
    padding: 15px;  
    margin: 15px auto;
    width: 60%;
    font-size: 17px;
    background-color: #fff;
    border-radius: 5px;
}

#skills{
    width: 70%;
    margin: 30px auto;
    text-align: center;   
    padding: 30px;
    background-color: rgb(237, 237, 177);
    border-radius: 5px;
}

#skills h2{
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

#skills ul{
    list-style: none;  
}

#skills li{
    padding: 15px;  
    margin: 15px auto;
    width: 60%;
    font-weight: 700;
    font-size: 17px;
    background-color: #fff;
    border-radius: 5px;
}

#projects{
    width: 70%;
    margin: 30px auto;
    text-align: center;   
    padding: 30px;
    background-color: rgb(229, 167, 229);
    border-radius: 5px;
}

#projects h2{
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

#projects ul{
    list-style: none;  
}

#projects li{
    padding: 15px;  
    margin: 15px auto;
    width: 60%;
    font-size: 17px;
    background-color: #fff;
    border-radius: 5px;
}

#contact{
    width: 70%;
    margin: 30px auto;
    text-align: center;   
    padding: 30px;
    background-color: rgb(230, 159, 159);
    border-radius: 5px;
}

#contact h2{
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

#contact ul{
    list-style: none;  
}

#contact li{
    padding: 15px;  
    margin: 15px auto;
    width: 60%;
    font-size: 17px;
    background-color: #fff;
    border-radius: 5px;
}

#contact li a{
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 500;
}


#end{
    text-align: center;
    background-color: rgb(238, 97, 109);
    padding: 10px;
    color: #fff;
}