body {
    background-color: #001B27;
}

/* Bolhas de luz no fundo para dar um ar moderno/atrativo */
.blob {
    position: absolute;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.15;
    background-color: #E0E4C9;
}

/* Estilização da barra de rolagem */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #001B27;
}

::-webkit-scrollbar-thumb {
    background: #002636;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E0E4C9;
}