@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

body {
    overflow: hidden;
}

.column {
    display: flex;
    flex-flow: column;
    height: 100vh;
    padding-left: 10%;
    padding-right: 10%;
}

.big-text-header {
    color: red;
    font-size: 5vw;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    font-family: Zilla Slab, serif;
    font-weight: bold;
    user-select: none;
}

.shiny-text {
    padding: 0;
    margin: 0;
    line-height: 0;
    text-align: center;
    font-family: Zilla Slab, serif;
    font-weight: bold;
    color: gold;
    animation: ease-out shiny-text-loop 1.5s infinite;
    user-select: none;
}

.version-text {
    line-height: 0;
    margin: 0px;
    text-align: center;
    font-family: Zilla Slab, serif;
    color: gray;
    transform: translateY(100%);
    user-select: none;
    animation: linear version-text 10s forwards;
}

@keyframes version-text {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes shiny-text-loop {
    0% {
        transform: translateY(-10px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.75);
    }
    100% {
        transform: translateY(-10px) scale(1);
    }
}

.big-image {
    flex: 1;
    object-fit: contain;
    height: calc(100vh - 5vw - 50px);
    user-select: none;
}

.clickable {
    cursor: pointer;
    transition: 0.5s;
}

.clickable:hover {
    transform: scale(1.1) perspective(400px) rotate3d(1, 0, 0, 10deg);
    transition: 0.5s;
}

.announcer-overlay {
    position: absolute;
    background: black;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
}

.announcer-overlay > p {
    color: white;
    flex: 1;
    text-align: center;
    vertical-align: center;
    font-size: 5vw;
    font-family: Archivo Black, sans-serif;
    animation: racism-text-animation linear 1s;
}

@keyframes racism-text-animation {
    0% {
        color: black;
    }
    30% {
        color: black;
    }
    100% {
        color: white;
    }
}

.hidden {
    visibility: hidden;
}

.disclaimer-text {
    font-family: sans-serif;
    font-weight: bold;
}

.meme {
    position: absolute;
}

.meme-flag {
    top: 20px;
    left: 20px;
    height: 100px;
}

.meme-pc {
    bottom: 20px;
    left: 20px;
    height: 200px;
}

.meme-clap {
    top: 20px;
    right: 20px;
    height: 200px;
}

.meme-cat {
    bottom: 20px;
    right: 20px;
    height: 200px;
}

.meme-android {
    left: 20px;
    top: calc(50vh - 100px);
    height: 200px;
}

.mario {
    cursor: not-allowed;
    opacity: 0.8;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #191919;
        color: white;
    }

    .big-text-header {
        color: #ff5959;
    }
}