body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #f7f3ef, #e9dccd);
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #9c6b48;
    color: white;
    padding: 2rem 1rem;
}

h1 {
    margin: 0;
    font-size: 2.2em;
}

.menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 40px;
    padding: 3rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
}

.person {
    background: white;
    border-radius: 15px;
    width: 220px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.person:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.person img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.person a {
    text-decoration: none;
    color: #9c6b48;
    font-weight: bold;
    font-size: 1.2em;
}

footer {
    background: #eee;
    padding: 1rem;
    color: #555;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .person {
        width: 160px;
        padding: 1rem;
    }
    .menu {
        gap: 20px;
        padding: 2rem 0.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6em;
    }
    .person {
        width: 140px;
        padding: 0.8rem;
    }
}
@media (min-width: 900px) {
    .menu {
        justify-content: center;
    }
}
