body {
    font-family: monospace;
    background-color: #121212;
    color: #eeeeee;
    text-decoration: none;
}

.container {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    margin: 0;
}

hr {
    width: 10%;
    margin: 15px auto;
}

.links {
    display: flex;
    gap: 15px;
}

.icobtn img {
    width: 40px;
    filter: brightness(70%) saturate(0%);
}

button.icobtn {
    all: unset;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

.story {
    margin: 0;
    font-size: 20pt;
    color: #333333;
}

@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeout {
    animation: fadeout 5s forwards;
}
