body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
}

p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    text-decoration: none;
    color: #333;
}

.botao {
    border: 1px solid #fff;
    color: #fff;
    width: 200px;
    height: 50px;
    background-color: #166EB7;
    display: flex;
    justify-content: center;
    align-items: center;
  transition: background-color 0.3s; /* Efeito de hover */
  text-decoration: none;
  padding: 5px 10px;
  border-radius: .25rem;
}




/* Estilos responsivos (ajuste conforme necessário) */

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}

