body{
    color: yellow; 
    background-image: url('./Imagens/Menu-Inicial/Background-min.jpg');
    background-size: cover;
    background-position: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; /*Fonte*/
    text-decoration: none;
    font-weight: bold;
}



.navbar {
    background-color: black; 
    padding: 10px 0; 
    width: 100%; 
    border-left: 2px solid white; 
    border-right: 2px solid white; 
    border-top: 2px solid white; 
    border-bottom: 2px solid white; 
    box-sizing: border-box; 
}



.navbar ul {
    display: flex;
    flex-wrap: wrap; 
    list-style-type: none; 
    margin: 0;
    padding: 0;
    justify-content: center; 
}



.navbar ul li {
    margin: 5px; 
}



.navbar ul li a {
    display: block; 
    padding: 10px 20px; 
    color: yellow; 
    text-decoration: underline; 
    border: 1px solid transparent; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}



.navbar ul li a:hover {
    background-color: yellow; 
    color: black; 
    border-color: yellow;  
}



a:hover {
    padding: 5px;
    background-color:red;
    color: black;
    text-decoration: none; 
}

a, a:visited {
    color: black; /* Cor dos links */
    text-decoration: none;
}



h1{
    color: red;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    margin-left: auto;
    margin-right: auto;
}