/* Neo-brutalism style */

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

header {
    background-color: #ffcc00;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #000000;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

section {
    padding: 40px 20px;
    border-bottom: 3px solid #000000;
}

h2 {
    margin-top: 0;
    border-bottom: 3px solid #000000;
    padding-bottom: 10px;
}

.experience, .education-item {
    margin-bottom: 20px;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project-card {
    background-color: #ffcc00;
    padding: 20px;
    width: 300px;
    text-align: center;
    border: 3px solid #000000;
    box-shadow: 10px 10px 0 #000000;
}

.project-card img {
    max-width: 100%;
    height: auto;
    border: 3px solid #000000;
}

.skills-list, .achievements-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills-list li, .achievements-list li {
    background-color: #ffcc00;
    padding: 10px 15px;
    border: 3px solid #000000;
    box-shadow: 5px 5px 0 #000000;
}

#contact p {
    text-align: center;
}

footer {
    background-color: #ffcc00;
    text-align: center;
    padding: 10px;
    border-top: 3px solid #000000;
}

@media (max-width: 768px) {
    .project-grid {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}