* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0; 
    padding-top: 80px; 
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(207, 45, 45);
    padding: 15px 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.nav a:hover {
    color: #c7f036; 
}

.nav a:focus {
    color: red;
    background: #c2fe4b; 
    outline: none;
}

.nav a.active {
    color: red;
    background: #c2fe4b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}



@media (max-width: 768px) {

    body {
        padding-top: 140px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;    
        justify-content: center;
        gap: 8px;
    }

    .nav a {
        width: 30%;         
        text-align: center;
        margin: 0;
        padding: 8px 5px;
        font-size: 14px;
        border-radius: 12px;
    }
}