@font-face {
    font-family: 'Determination';
    src: url('../fonts/determination.ttf') format('truetype'),
        url('../fonts/determination.woff') format('woff'),
        url('../fonts/determination.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Determination', sans-serif;
    background-color: black;
    color: white;
}

#bgm {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.lost-dreams {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

footer {
    color: black;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer ul li {
    display: inline;
    font-size: 1.2em;
}

footer ul li a {
    color: black;
    text-decoration: none;
}

.fates {
    font-size: 2em;
    text-align: center;
    color: white;
}

.inline-flex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fate1,
.fate2 {
    opacity: 0;
    animation-name: fadeOutIn;
    animation-duration: 35s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fate3 {
    opacity: 0;
    animation-name: fadeOutInTwo;
    animation-duration: 10s;
    animation-delay: 10s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

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

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

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

    100% {
        opacity: 1;
    }
}


.him {
    background-image: url("../images/shinji.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 600px;
    height: 600px;
    position: absolute;
    filter: grayscale(100%);
    opacity: 7%;
    animation-name: leaves;
    animation-duration: 30s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    z-index: 999;
}

@keyframes leaves {
    0% {
        opacity: 7%;
    }

    100% {
        opacity: 0%;
    }
}