*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body{
    background:black;
    color:plum;
}

header{
    display:flex;
    justify-content:space-between;
    padding:20px 50px;
}

header span{
    color:maroon;
}

nav a{
    margin-left:20px;
    text-decoration:none;
    color:silver;
}

nav a:hover{
    color:green;
}

section{
    padding:50px;
}

.home{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.home span{
    color:blue;
}

.social-icons i{
    margin:10px;
    padding:10px;
    border:2px solid whitesmoke;
    border-radius:50%;
    color:red;
}

.social-icons i:hover{
    background:green;
    color:black;
}

.right img{
    width:300px;
    border-radius:10px;
}

.about{
    text-align:center;
}

.about h2{
    color:brown;
    margin-bottom:20px;
}

.info{
    display:flex;
    justify-content:space-around;
    margin-top:30px;
}

.education{
    text-align:center;
}

.education h2{
    color:brown;
}

.card{
    background:peachpuff;
    color:black;
    margin:20px auto;
    padding:20px;
    width:300px;
    border-radius:10px;
}

.service{
    text-align:center;
}

.service h2{
    color:brown;
}

.service-box{
    display:flex;
    justify-content:center;
    margin-top:20px;
}

.box{
    background:#222;
    margin:10px;
    padding:20px;
    border-radius:10px;
    width:200px;
}

.box:hover{
    background:red;
    color:black;
}

.contact{
    text-align:center;
}

.container{
    width:90%;
    margin:auto;
}

.contact form{
    width:60%;
    margin:auto;
}

.contact input,
.contact textarea{
    width:100%;
    margin-bottom:15px;
    padding:10px;
}

.contact button{
    width:100%;
    padding:10px;
    background:red;
    border:none;
    color:yellow;
}

.row{
    display:flex;
    justify-content:space-around;
    margin-top:30px;
}

.col{
    width:30%;
}