/* Base styles*/
body{
    font-family:Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: darkblue;
    background-color: azure;
    margin:0;
    padding: 0;
}

header {
    background-color: blanchedalmond;
    color: blueviolet;
    padding: 20pix;
    text-align: center;
}

Header h1{
    margin: 0;
    font-size: 28px;
}
/*Navigation Menu*/
nav {
    background-color: azure;
    padding:12px ;
    text-align: center;
}

nav a:hover{
    color: brown;
    /*ligt blue when mouse hovers*/
}

/*hero section (Welcome message on home page)*/
.hero-section {
    background-color: #1e3a5f;
    color: white;
    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;
}

/*Button style*/
.hero-section a {
    background-color: aquamarine;
    color: burlywood;
    padding:  12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    display: inline-block;
}

.hero-section a:hover {
    background-color: aqua;
    /*darker blue on hover*/
}
/*General section styling
(Mission, services,etc.)*/
section{
    max-width: 1000px;
    margin: 30px auto;

    padding: 0 20px;
}

/*card style-Used for most sections*/
.my goal,services,.who-i am, .background,.skills
{
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
   /* Light border*/
   margin-bottom: 25px;
}

/*What i do section*/
.services h2{
    color: #1e3a5f;
    margin-bottom: 20px;
}

.services li {
    background-color: #e0f2fe;
    /*light blue background*/
padding: 12px 20px;
margin-bottom: 10px;
border-radius: 6px;
list-style-position:inside;/*Numbers inside the box*/
}

/*page tittles (About Me, contact Me)*/
.page-tittle{
    text-align: center;
    color: #1e3a5f;
    margin: 30px 0;
}

/*Education Table*/
table
{
    width: 100%;
    border-collapse:collapse;

}

th, td{
    border:1px solid #ccc;
    padding:12px;
    text-align:left;
}

th{
    background-color: #1e3a5f;
    color:white;
}

/*skills section*/
.skills ul {
    list-style-type: square;
   /* simple square bullets*/
}
.skills li{
    padding: 8px;
    font-size: 18px;
}
/*contact form*/
.contact-form {
    max-width: 600px;
    margin: 0auto;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;

}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;

}
.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border:1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;

}
.contact-form input
[type="submit"]
{
    background-color: #1e3a5f;
    color: white;
    border: none;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
}
.contact-form input[type="submit"]:hover
{background-color: #2c5282;}

aside{
    max-width: 1000px;
    margin: 30px auto;
    background-color: #1e3a5f;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

aside p{
    margin: 8px;
    font-size: 18px;

}
footer{
    background-color: #1e3a5f;
    color: #ccc;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media(max-widith:76px){
    nav a{
        display: block;
        margin: 10px o;
    }
    .hero-section{
        margin: 10px;
        padding: 30px 15px;
    }
    
