body {
    background-color: #341256;
    color: #ffffff;
}

.custom-link {
    color: white;
    font-size: 1.0em;
    font-style: italic;
    text-shadow: 1px 1px 1px black;
    transition: font-size 0.3s ease, text-shadow 0.3s ease;
}
.custom-link:hover {
    font-size: 1.1em; /* Aumenta o tamanho da fonte */
    text-shadow: 3px 3px 8px black; /* Aumenta a sombra ao passar o cursor */
    color: white; /* Mantém a cor branca */
}
.center-div {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
    height: 10vh;           /* Altura total da janela */
    width: 100%;            /* Largura total da janela */
}
