* {
    margin: 0;
    padding: 0;
    border: 0;
}

#intro {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-image: url('/intro.png');
    background-color: #fafafa;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-size: 200%;
    opacity: 0;
    filter: grayscale(100%) blur(10px);
    animation: fadeAndZoomOut 7s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    background-repeat: no-repeat;
}

@keyframes fadeAndZoomOut {
    0% {
        opacity: 0;
        background-size: 200%;
        filter: grayscale(100%) blur(10px);
    }

    70% {
        opacity: 1;
        background-size: 100%;
        filter: grayscale(0%) blur(0px);
    }

    85% {
        opacity: 1;
        background-size: 100%;
        filter: grayscale(0%) blur(0px);
    }

    100% {
        opacity: 0;
        background-size: 200%;
        filter: grayscale(100%) blur(10px);
    }
}

#bg-gradient {
    height: 100vh;
    background: linear-gradient(105deg, #a02c26 0%, #380c0a 100%);
    animation: gradientScrollAnim 10s ease infinite;
    background-size: 350% 350%;
}

@keyframes gradientScrollAnim {
    0%{background-position:0% 23%;}
    50%{background-position:100% 78%;}
    100%{background-position:0% 23%;}
}

#container {
    height: 100%;
    opacity: 0;
    background-image: url('main-bg-2.png');
    background-size: cover;
    background-position: center;
    animation: fadeIn 1s 6.5s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


header {
    background-color: #a62a005e;
    backdrop-filter: blur(20px);
    height: 80px;
    display: flex;
    justify-content: center;
}

#logo {
    height: 150px;
    display: inline-block;
    background-color: #001121;
    transform: translateY(-20%);
    clip-path: polygon(100% 0, 100% 70%, 53% 74%, 0 70%, 0 0);
    animation: logoSlideIn 1s 6.25s forwards;
}

@keyframes logoSlideIn {
    100% {
        transform: translateY(0%);
        clip-path: polygon(100% 0, 88% 79%, 52% 100%, 11% 77%, 0 0);
    }
}

#logo-image {
    height: 100px;
    bottom: -10px;
    position: relative;
    filter: drop-shadow(0 0 10px #000000b3);
}

#logo-text {
    height: 50px;
    bottom: 20px;
    position: relative;
    left: -40px;
    /* filter: brightness(0.2); */
}

#logo:hover {
    background-color: #e33802;
    /* clip-path: polygon(0 0, 99% 0, 86% 72%, 0 100%); */
}

#logo:hover #logo-text {
    filter: brightness(0);
}