header.header {
    background-color: rgb(185 217 250 / 0.5);
    color: rgb(185 28 28);
}

.dekstop a.active, .dekstop a:hover {
    color: rgb(239 68 68)
}

nav.mobile-menu {
    color: rgb(185 28 28);
    font-weight: 900 !important;
}

footer.footer {
    background-color: rgb(185 217 250);
    color: rgb(94 44 0);
}

.column-card {
    background-color: rgb(185 217 250 / 0.5);
}

p.text-card {
    color: rgb(94 44 0);
}

.bounce-in-right {
    transform: translateX(-50%);
    animation: bounceInRight 2s ease forwards;
}

@keyframes bounceInRight {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateY(0);
    }
}