html,
body {
    background-color: rgb(26, 27, 31);
    color: rgb(255, 255, 255);
    font-family: 'Ubuntu', sans-serif;
}

.custom-glow:hover {
    border-color: #319ad7;
    box-shadow: 0 0 8px 2px #319ad7, 0 0 16px 4px #319ad7;
    transition: box-shadow 0.4s;
}

.custom-glow2:hover {
    border-color: #3cb882;
    box-shadow: 0 0 8px 2px #3cb882, 0 0 16px 4px #3cb882;
    transition: box-shadow 0.4s;
}

.rise-logo {
    width: 50%;
    margin-left: 25%;
    margin-bottom: 15%;
    animation: bounce 5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
