body{
    background-color: beige;
}

header {
    padding:20px;
    height:100px;
    font-family: 'Lucida Grande', 'Lucida Sans Unicode',serif;
    background-color: rgb(112, 114, 236);
    color: white;
}

header h1 {
    display: inline-block;
    font-size:40px;

}
header nav{
    padding-top: 70px;
    float:right;
    font-family: 'Times New Roman', Times, serif;
}
nav ul li a{
    margin:10px;
    color: white;
    text-decoration: none;
    font-size:30px;
}
header nav ul{
    list-style-type: none;
}

nav ul li{
    display: inline-block;

}
li a:hover{
    background-color: bisque;
    color:black;
}
/*about me section*/
.aboutme
{
    height:15%;
    width: 85%;
    padding:30px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 35px;
    background:url(./3375468.jpg);
    overflow: hidden;
    border-radius: 40px;

}
.aboutme h2{
    display:block;
    font-size: 45px;
    color: white;

}
/*Works Section*/
.works{
    height:15%;
    width:85%;
    padding:30px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 35px;
    background:url(./3375468.jpg);
    overflow: hidden;
    border-radius: 40px;
    flex-wrap: wrap;
}
.works h2{
    display:block;
    font-size: 45px;
    color: white;
    margin-bottom:5px;
    text-align:top;
}
.works .container{
    width:300px;
    height:350px;
}
.works .container .Image{
    width:300px;
    height:300px;
    
}
.container .para{
    width:200px;
    height:50px;
    font-size: 25px;
    display:inline-block;
    position: absolute;
    text-align: center;
    padding-bottom: 30px;
    margin:5px;
}
/*Contact details*/
.contactme
    {
        height:15%;
        width: 85%;
        padding:30px;
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 25px;
        background:url(./3375468.jpg);
        overflow: hidden;
        border-radius: 40px;
}
/*Enlarges Image while hovering*/
.Image:hover{
    transform: scale(2);
}
html{
    scroll-behavior: smooth;
}
/*footer section*/
.footer{
    font-size: 25px;
    text-align: center;
    padding:20px;
    height:100px;
    font-family: 'Lucida Grande', 'Lucida Sans Unicode',serif;
    background-color: rgb(112, 114, 236);
    color: white;
}
@media screen and (max-width:992px) {
    nav ul li a{
        background-color: rgb(104, 37, 67);
        display: block;
        width:100%;}

    }

@media screen and (max-width:600px) {
    nav ul li a{
        background-color: darkcyan;
        display: block;
        width:100%;

    }

}