body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;
    color: #333;
    margin: 0;
}

header {
    background-color: #4285f4;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #34a853;
}
a {
    text-decoration: none;
    color: rgb(252, 155, 155);
}


section {
    margin: 40px auto;
    padding: 20px;
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    text-align: center;
    background: linear-gradient(to right, #f8f8f8, #e0e0e0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


section h2 {
    color: #4285f4;
}

.job {
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 20px;
}

.job h3 {
    color: #4285f4;
}

.education-entry h3 {
    color: #4285f4;
}

#skills ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

#skills li {
    background-color: #e0f7fa;
    color: #333;
    margin: 5px;
    padding: 10px;
    border-radius: 10px;
}

#hobbies ul,
#interests ul {
    list-style: none;
}

#contact {
    background-color: #f8bbd0;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #ffffff;
    color: #bdee0d;
    padding: 10px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #ccc;
}

@media only screen and (max-width: 768px) {
    section {
        width: 90%;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
