* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

/* Modo escuro (padrão) */
body.dark-mode {
    background-color: #222;
    color: white;
}

/* Modo claro */
body.light-mode {
    background-color: #fff;
    color: #333;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

#logo {
    width: 200px;
    margin-bottom: 20px;
}

/* Ícone de alternância de tema no canto superior direito */
#toggle-mode {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 24px; /* Ícone maior */
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none; /* Removendo fundo */
    border: none; /* Removendo borda */
    color: inherit; /* Herdando a cor do texto do body */
}

/* Efeito ao passar o mouse */
#toggle-mode:hover {
    transform: scale(1.2);
}

/* Removendo estilos desnecessários no modo claro */
body.light-mode #toggle-mode {
    background: none; /* Garante que não tenha fundo no modo claro */
    color: inherit; /* Mantém a cor do texto sem alteração */
}

body.light-mode #toggle-mode:hover {
    background: none; /* Garante que não tenha fundo ao passar o mouse */
}

/* Centralizar botões */
#buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
    margin-top: 20px;
}

/* Estilização dos botões */
.btn {
    text-decoration: none;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056b3;
}
