/* Reset some default styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

header {
    text-align: center;
    background-color: #007acc;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

section {
    background-color: #fff;
    margin: 20px;
    margin-bottom: 0px;
    margin-right: 10px;
    padding: 20px;
    border-radius: 5px;
    flex: 40%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #007acc;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.job, .school {
    margin-bottom: 20px;
}

.job h3, .school h3 {
    font-size: 1.2em;
}

.date {
    color: #888;
}

ul {
    list-style-type: none;
    margin-left: 0px;
}

li {
    margin-bottom: 5px;
}

a {
    color: #007acc;
    text-decoration: none;
}

a:hover {
    border-bottom: 1px solid #007acc;
}

nav {
    text-align: center;
    margin-top: 20px;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline;
    margin: 0 0px;
}

nav a {
    text-decoration: none;
    color: #fff06d;
    font-weight: bold;
}

/* Highlight the current section in the menu */
nav a:hover {
    border-bottom: 2px solid #fff06d;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 20px;

}

.rightside {
    display: flex;
    flex: 50%;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.left {
    flex: 50%;
}
