
body {
    margin: 0;
    padding: 0;
    background-color: #ffd9a3; 
    font-family: Arial, sans-serif;
}


nav {
    background-color: #000;     
    padding: 15px 0;            
}


nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;    
    gap: 40px;                  
}


nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;         
    border: 2px solid white;   
    border-radius: 6px;       
    transition: 0.2s;
    font-weight: bold;
}


nav ul li a:hover {
    background-color: white;
    color: black;
}

.link-list {
    list-style: none;      
    padding: 0;
    margin: 0;
    display: flex;        
    gap: 25px;           
}

.link-list a {
    text-decoration: none; 
    color: black;          
    font-weight: bold;
    font-size: 18px;
}

.link-list a:hover {
    text-decoration: underline; 
}
