#steps{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#hints{
    padding: 16px;
    border: 1px solid rgba(254,204,0 ,0.2);
    background-color: rgba(254,204,0 ,0.1);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}
#steps-section{
    padding: 16px;
}
.h-card{
    border-radius: 24px;
    border: 2px solid var(--ice-blue);
    width: 100%;
    margin-bottom: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.index{
    color: white;
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/svg/purple blob.svg");
    background-position: center;
    background-repeat: no-repeat;
}
.card-t{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.h-card .btn{
    margin-top: 12px;
}
#videos{
    background-image: url("../img/patterns/polygon-scatter-dark.svg");
    background-repeat: repeat;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.vid-card{
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(255,255,255,0.5);
}
.vid-card .index{
    width: 50px;
    height: 50px;
}
.vid-title{
    width: 100%;
    font-weight: bold;
    font-size: large;
    text-align: center;
}
.vid-desc{
    font-weight: normal;
    font-size: medium;
    text-align: center;
}
@media (max-width: 575px) {
    #steps{
        width: 100% !important;
        margin-left: 0 !important;
    }
    .card-t, .h-card{
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .card-t .index{
        margin-left: 0 !important;
        margin-bottom: 16px;
        width: 35px;
        height: 35px;
    }
    #hint-title{
        display: flex;
        align-items: start;
        flex-direction: column;
    }
}