*/
body{
font-family: 'Times New Roman', Times, serif;
line-height: 1.6;
color: rgb(26, 190, 54);
background-color: aliceblue;
margin:0;
padding:0;
}

/*header(Top of the page)*/
header{
    background-color:azure;
    color: rgb(71, 255, 80);
    padding:20px;
    text-align:center;
}

header h1{
    margin: 0;
    font-size: 28px;
}
/*3.Navigation menu*/

nav{
    background-color: rgb(173, 230, 208);
    padding: 12px;
    text-align: center;
}
nav a{
    color: white;
    text-decoration: none;
    margin: 15px;
    font-size: 18px;
}
nav a:hover{
    color: lightgreen;
}

.hero-section{
    background-color: whitesmoke;
    color: rgb(30, 255, 0);
    text-align: center;
    padding: 50px 20px;
    margin: 20px;
    border-radius: 10px;
}
.hero-section h2{
    font-size: 32px;
    margin-bottom: 15px;
}
.hero-section p{
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 25px;
}

.hero-section a{
background-color: rgb(230, 176, 216);
color: white;
padding: 12px 30px;
text-decoration: none;
border-radius:25px ;
font-size: 18px;
display: inline-block;
}
.hero-section a:hover{
    background-color: rgb(209, 22, 162);
}

.section,mission,services{
    max-width: 1000px;
    margin: 30px auto;
    padding:0 20px;
}
/*card style*/
.my-goal,.services,.who-iam,.background,.skills{
    background-color:rgb(117, 196, 13);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #ddd;
    margin-bottom: 25px;
}

.services h2{
    color:#1e5f27;
    margin-bottom: 20px;
}

.services li{
    background-color: #e0f2fe;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    list-style-position: inside;
}
/*page title(about me,contact me)*/
.page-title{
    text-align: center;
    color:#07b842;
    margin: 30px 0;
}
/*education table*/
table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th,td{
    border: 1px solid#4e13ad;
    padding: 12px;
    text-align: left;
}

th{
    background-color: #82c20c;
    color: rgb(11, 124, 230);
}

/*skills section*/
.skills ul{
    list-style-type: square;
}

.skills li{
    padding: 8px 0;
    font-size: 18px;
}

/*contact form*/
.contact-form{
    max-width: 600px;
    margin: 0 auto;
    background-color: rgb(143, 19, 87);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid#10c027;
}

.contact-form label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-from textarea{
    width:100%;
    padding:10px;
    margin-bottom: 15px;
    border: 1px solid #0bc9a9;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form input[type="submit"]{
    background-color: #188821;
    color: rgb(96, 228, 63);
    border: none;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
}

.contact-form input[type=" submit"]:hover{
    background-color: #4b9e08;
}
*/sidebar[contact]*/

div {
    max-width: 1000px;
    margin:30px auto;
    background-color: #df0a74;
    color:rgb(112, 199, 12);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

  
aside p{
    margin: 8px 0;
    font-size: 18px;
}
/*footer*/
footer{
    background-color: #358f12;
    color: #10c23c;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media(max-width:768px){
    nav a {
        display:block;
        margin:10px 0;
    }
    .hero-section{
        margin: 10px;
        padding: 30px 15px;
    }
}