@font-face {
    font-display: swap;
    font-family: "Bellota";
    font-style: normal;
    font-weight: 400;
    src: url("./bellota-regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Coming Soon";
    font-style: normal;
    font-weight: 400;
    src: url("./coming-soon-regular.woff2") format("woff2");
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
}

* {
    box-sizing: border-box;
}

.index-page {
    padding: 3rem 3rem 3rem 3rem;

    grid-template-areas:
        "index-content index-gimmick";
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.index-content {
    grid-area: index-content;
    margin: 0;
    padding: 1em 1em 1em 1em;
    font-size: 1.2rem;

    background-color: #00ff0011;
    backdrop-filter: blur(64px);
    border-radius: 50px;
}

.index-content h1, .index-content h2 {
    font-family: "Bellota";
}

.index-content p, .index-content a, .index-content li {
    font-size: 1.6rem;
    font-family: "Coming Soon";
}

.index-content a {
    color: inherit;
    text-decoration-thickness: 2px;
}

.index-content li {
    list-style-type: "* ";
}

.index-title {
    transform: rotate(-3deg);
    text-align: center;
}

.index-gimmick {
    margin: 1rem 1rem 1rem 1rem;
}

@media (width < 1000px) {
    .index-page {
        padding: 1rem 1rem 1rem 1rem;
    }

    .index-gimmick {
        display: none;
    }
}

@media (min-width: 1000px) {
    .index-page {
        display: grid;
    }

    .index-gimmick {
        grid-area: index-gimmick;
        display: flex;
    }
}

.full-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
}

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

.fades-in {
    animation: fadeIn 1s;
    animation-fill-mode: forwards;
}

.psych {
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

.index-gimmick {
    justify-content: center;
    align-items: center;
}

.index-gimmick-img {
    height: 100%;
    object-fit: contain;
}

.hidden {
    display: none;
}
