/* estilo10.css */
body {
    font-family: 'Arial', sans-serif;
    background: url('patio.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto 0 auto; /* Adiciona 50px de margem no topo */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    color: #001349;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 5;
    display: flex;
    flex-wrap: wrap;
    
}

nav ul li {
    margin: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #0096C7;
    font-weight: bold;
    display: inline-block;
    padding: 10px;
    border-radius: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color:  #29293A;
    transform: translateY(-5px);
}

nav ul li a i {
    margin-right: 8px;
}

nav ul li.logout {
    margin-left: auto; /* Move a opção "Sair" para o final */
}

