header {
    background-color: #552583;
    padding: 20px;
    border-bottom: 5px solid #FDB927;
}

header h1 {
    color: white;
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    list-style: none;
}

nav a {
    color: #FDB927;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

nav a:hover {
    background-color: #FDB927;
    color: #552583;
}

/* Responsividade */

@media (max-width: 600px) {

    header h1 {
        font-size: 1.5rem;
    }

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

    nav a {
        display: block;
        width: 100%;
        text-align: center;
    }
}
