/* 
© 2025 Om Kanabar.
All Rights Reserved
*/

html,
body {
    background-color: #111111;
    width: 100%;
    height:100%;
}

body {
    background: linear-gradient(-45deg, #111111, #284156, #112128, #434343);
    background-size: 400% 400%;
    animation: gradient 60s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.title {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 20vh;
    justify-content: center;
    text-align: center;
    font-family: Cal Sans;
    color: #dfdfdf;
}

.title a{
    transition: 0.2s ease-in-out;
}

main{
    display: flex;
    flex-direction: column;
    height: 73vh;
    justify-content: center;
}

main .img-box{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

main img{
    height: 30vh;
    width: fit-content;
}

footer{
    text-align: center;
    font-size: 0.75em !important;
}

footer p a{
    font-family: 'Cal Sans', sans-serif;
    color: #646464 !important;
    transition: 0.2s ease-in-out;
}

footer p a:hover{
    color: #d7d7d7 !important;
}

footer a{
    font-family: 'Cal Sans', sans-serif;
    color: #3b4c5a;
    transition: 0.2s ease-in-out;
}

footer a:hover{
    font-family: 'Cal Sans', sans-serif;
    color: #a5a5a5;
}
