@font-face {
    font-family: "Seto";
    src: url("../assets/fonts/sp-setofont.woff2") format("woff2");
}
@font-face {
    font-family: "Chalkduster";
    src: url("../assets/fonts/Chalkduster.woff2") format("woff2");
}

/* tippy theme styling */
.tippy-box[data-theme~='simple'] {
    background-color: white;
    color: black;
    font-family: "Seto";
    border: 1px black dashed;
}
.tippy-box[data-theme~='simple'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: tomato;
    display: none;
}
/* =================== */

p {
    font-family: "Seto";
    color: black;
}

.header-image-wrapper {
    transition-duration: 1000ms;
    transform: translateY(100%);
    margin-bottom: 2%;
}

.main-container {
    width: 100%;
    padding: 5% 0% 2% 0%;
}
.header-image, .logo-image {
    display: block;
    width: 15%;
    margin: auto;
    object-fit: contain;
}

.header-image {
    transition-duration: 1000ms;
    transform: translateY(-100%);
    margin-bottom: 5%;
}

.logo-image {
    margin-bottom: 2%;
    width: 20%;
}
.content-wrapper {
    transition-duration: 1000ms;
    text-align: center;
    padding: 2% 0%;
    width: 50%;
    margin: auto;
    opacity: 0;
}

.content-wrapper a {
    color: blue;
}

.play-item-wrapper {
    transition-duration: 500ms;
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.untouchable {
    pointer-events: none;
}

.out-of-screen {
    transform: translateY(500%);
}
.play-item {
    overflow: visible;
    cursor: pointer;
    transition-duration: 500ms;
    position: relative;
    width: 18%;
    margin-left: 1%;
    margin-right: 1%;
    height: 30vh;
    text-align: center;
}

.play-item:hover {
    transform: rotate(2deg) scale(1.05);
    filter: brightness(1.05);
}

.play-item:hover h3 {
    transform: rotate(-2deg);
}

.play-item img {
    height: 80%;
    object-fit: contain;
}
.play-item h3 {
    transition-duration: 250ms;
    font-family: "Chalkduster";
}

.copyright-statement {
    display: none;
    text-align: center;
    margin-top: 5%;
}
.mobile {
    display: none;
}
@media only screen and (max-width: 1000px) {
    .main-container {
        padding-top: 15%;
    }
    .play-item-wrapper {
        flex-direction: column;
    }
    .play-item {
        width: 100%;
        margin-bottom: 10%;
    }
    .content-wrapper {
        width: 80%;
    }
    .logo-image {
        width: 60%;
    }
    .header-image {
        width: 50%;
        margin-bottom: 10%;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
}

cgr {
    color: #626A70;
}

cp {
    color: #E50684;
}

cy {
    color: #FFCD05;
}

cb {
    color: #2AA8E0;
}

cg {
    color: #7CC242;
}