* {
    margin: 0;
}
.navbar {
    background-color: white;      /* Dark background */
    overflow: hidden;            /* Clear floats */
}

.nav-container {
    display: flex;              
    justify-content: space-around; 
    width: 60%;
    padding: 20px 0;            
}

.nav-link {
    color: black;               
    text-decoration: none;      
    padding: 14px 20px;        
    font-size: 1em;             
    transition: background-color 0.3s; 
}

.nav-link:hover {
    background-color: #575757;   /* Darker background on hover */
}


.container {
    margin: auto;
    width: 60%;
    font-size: 1.1em;
    margin: auto;
    padding: 30px;
}

p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

h3 {
    font-size: 1.2em;
    text-decoration: none;
}

.name {
    text-decoration: none;
    color: black;
    font-size: 1.1em;
}

#email {
    font-size: 0.9em;
    color: gray;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 2.5rem; 
}
