/**
 * CSS 3
 * 
 * @author      Dottcon   <administrador@dottcon.com>
 * @version     1.0
**/

@charset 'utf-8';

/* Reset básico para margem e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos gerais do corpo */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-image: url('../Imagens/fundoConsult.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
}

/* Outras regras de estilo podem ser adicionadas aqui */

/* Estilos para o cabeçalho */
header {
    background-color: rgba(255,255,255,0.7);
    border-radius: 20px 20px 0 0;
    color: rgb(0,0,0);
    margin: 20px;
    padding: 20px;
    text-align: center;
}

header > img {
    border: 5px solid rgb(0,0,0);
    border-radius: 180px;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.5);
    height: 180px;
    max-width: 180px;
    width: auto;
}

header > ul {
    align-items: center;
    display: flex;
    font-size: 2em;
    justify-content: center;
    list-style: none;
}
header > ul > li {
    margin: 0 7px 0 7px ;
}

header > ul > li > a {
    align-items: center;
    background-color: rgba(42,187,29,1);
    border-radius: 35px;
    color: rgb(255,255,255);
    display: flex;
    height: 70px;
    justify-content: center;
    text-decoration: none;
    width: 70px;
}

/* Estilos para o conteúdo principal */
main {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Fundo semi-transparente para destacar o conteúdo */
}

/* Estilos para a navegação */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Estilos para o rodapé */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
}
