:root {
    --font: "DM Sans", sans-serif;
}

/* #151810 */

body {
    background-color: rgb(13, 13, 13);
    color: white;
    font-family: sans-serif;
}

header{
    position: fixed;
    top: 0;
    left: 0;

    translate: -2px 0;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 50%;
    

}

.title {
    display: flex;
    animation: uptrasnition 1.5s ease-in-out;

}

.title h1{
    position: absolute;
    text-align: center;

    font-family: var(--font);
    letter-spacing: 5px;

    translate: -45px -3px;

    color:white;
}

.title img{
    width: 80px;
    height: 80px;
}

@keyframes uptrasnition {
    0%{
        opacity: 0%;
        translate: 0px 10px;
    }
    100%{
        opacity: 100%;
        translate: 0px 0px;
    }
}

.bottomGlow {

    bottom: 0;
    left: 0;
    position: fixed;
    width: 100vw;

    height:200px;
    z-index: -1;


    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 61, 183, 0.1));
}

.container {
    width: 100vw;
    left: 0;

    font-size: 12px;


    margin-top: 18rem;


    text-align: center;
    position: absolute;

    color: rgb(255, 255, 255, 0.8);
    animation: longeerweirduptrasnition 2.5s ease-in-out;


}


@keyframes longeerweirduptrasnition {
    0%{
        opacity: 0%;
        translate: 0px 10px;
    }

    70%{
        opacity: 0%;
        translate: 0px 10px;
    }
    
    100%{
        opacity: 100%;
        translate: 0px 0px;
    }
}



.progress {
    left: 0;
    right: 0;
    margin: auto;

    position: absolute;
    margin-top: 22.4rem;


    width: 400px;
    height: 20px;

    border: 2px rgb(224, 224, 224) solid;
    border-radius: 10px;
    background-color: rgba(28, 25, 25, 0.405);
    animation: longeerweirduptrasnition 4.5s ease-in-out;
    z-index: 2;
}

.bar {
    height: 20px;

    background: linear-gradient(90deg, rgba(67, 86, 255, 0.444), rgba(36, 47, 251, 0.649));
    border-radius: 8px;
}

#percent {
    font-size: 20px;
    font-weight: bolder;

    animation: longeerweirduptrasnition 4.5s ease-in-out;

}


footer {
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100vw;

    justify-content: center;
    display: flex;
    align-items: center;
}

.icons img {
    width: 35px;
}

.icons{
    display: flex;
    padding: 20px;
    gap: 20px;
    animation: uptrasnition 1.5s ease-in-out;

}

.icons button {
    padding: 4px 5px;
    background: rgba(35, 35, 35, 0.368);
    border: none;
    border-radius: 10px;
    transition: 0.5s all ease-in-out;
}

.icons button:hover {
    filter: brightness(130%);
    transform: scale(120%);
}

.icons img:hover {
    animation: wiggle 0.5s infinite;    
}

@keyframes wiggle {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(-3deg); }
    50%  { transform: rotate(3deg); }
    75%  { transform: rotate(-1.75deg); }
    100% { transform: rotate(0deg); }
}