/* Reset & General Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    font-family: 'Brush Script MT', cursive;
    background-color: #f4f4f4;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .name {
    padding-left: 100px;
    font-size: 1.5em;
    font-weight: bold;
}

header .name a{
    color: black;
    text-decoration: none;
}

header nav ul {
    list-style: none;
    padding-right: 100px;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
}

.resume-content {
    max-width: 1500px;
    margin: 100px auto 50px;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    text-align: center;
}

.experience, .education {
    font-size: 1.25em;
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 5px solid #a8a7a2;
}

.section-divider {
    border: none;
    height: 2px;
    background: #a8a7a2;
    margin: 20px 0;
}

/* Skills Styling */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.skills li {
    background: #a8a7a2;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 500px;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 1000;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    header .name{
        padding-left: 10px;
    }
    footer{
        display: block;
    }
}