.jumbotron {
    animation: rotateGradient 5s linear infinite;
    background: linear-gradient(90deg, #eb2f00, #7e0172f9);
    background-size: 200% 200%;
    color: white;
}

img{
    margin: auto;
    justify-content: center
}

.socials:hover {
    transform: scale(1.1);
    transition: transform 0.1s ease-in-out;
    filter: (rgba(243, 28, 0, 0.2) 0px 7px 29px 0px);
}

.socials{
    transition: transform 0.1s ease-in-out;
}

.card {
    height: 300px;
    background-color: black;
}

.fadeSlow{
    animation: fadeIn 1s ease-in-out;
}

.fadeFast {
    animation: fadeIn 0.5s ease-in-out;
}

.jumbotron {
    border-radius: 0px;
}

.sticky-column {
    position: sticky;
    top: 50px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rotateGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
