body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #2589bb;
}

header h1 {
    margin: 0;
    font-size: 3em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
    font-weight: 300;
}


nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px 0;
}

section {
    margin-bottom: 40px;
}

section h2 {
    border-bottom: 2px solid #2589bb;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #2c3e50;
}

.job, .education {
    margin-bottom: 20px;
}

.job h3, .education h3 {
    margin: 0;
    font-size: 1.5em;
    color: #e78c3c;
}

.job p, .education p {
    margin: 5px 0;
}

footer {
    background-color: #2c3e50;
    color: rgb(64, 52, 52);
    text-align: center;
    padding: 10px 0;
    border-top: 4px solid #2589bb;
}

footer p {
 margin: 0;
}

.navbar {
    background-color: #2c3e50;
    padding: 0.5rem 1rem;
}

.navbar div{
    display: flex;
    justify-content: space-between;
}

.navbar div a {
    text-decoration: none;
    color: white;
    margin-top: 15px ;

}