@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
body{
    padding: 0;
    margin:0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:rgb(20,20,20);
}
.content {
    min-height: 100vh;
    width: 100vw;
    font-family: "Jost",sans-serif;
    color:white;
    user-select: none;
    background: black;
    position: relative;
    max-width: 60vh;
}
.gamecard-outer {
    display: flex;
    position: absolute;
    top:0;
    left: 0;
    height: calc(100% - 20px);
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top:20px;
}
.gamecard {
    border:2px solid white;
    border-radius: 30px;
    width: calc(100% - 100px);
    background:rgb(90,10,10);
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    box-shadow: 0 0 15px 2px rgba(90,10,10);
    animation: bobbing 2s infinite;
    cursor: pointer;
}
.gamecard:active {
    width: calc(100% - 102px) !important;
    transition: 150ms;
}
@keyframes bobbing {
    from {
        width: calc(100% - 100px);
    }
    50% {
        width: calc(100% - 92px);
    }
    to {
        width: calc(100% - 100px);
    }
}
.gamecard div.imgarea {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
}
.gamecard div.textarea {
    background: linear-gradient(to top, rgb(50,10,10), transparent);
    margin-top:-50%;
    padding-top:50%;
    z-index: 1;
}
.gamecard img:nth-child(1) {
    position: absolute;
    top:10px;
    right:-30px;
    width: calc(100% - 90px);
    z-index: 2;
}
.gamecard img:nth-child(2) {
    position: absolute;
    top:90px;
    left:-30px;
    width: calc(100% - 90px);
}
.gamecard .unfocus,.focus {
    font-weight: 900;
    font-size: 35px;
    display: block;
    text-align: center;
}
.gamecard .focus {
    font-size: 50px;
    margin-top:-18px;
}
.gamecard .credits {
    display:block;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: 1px;
    font-family: "Inter",sans-serif;
    font-size: 15px;
}
.player-amount {
    display: flex;
    margin-left: auto;
    width: fit-content;
    margin-right: 10px;
    margin-top:10px;
    background:rgba(0,0,0,0.3);
    padding: 5px 10px 5px 5px;
    align-items: center;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Inter",sans-serif;
    font-size: 16px;
}
.player-amount i {
    margin-right: 5px;
    padding: 5px;
    background:white;
    color:rgba(90,10,10);
    border-radius: 15px;
    font-size: 15px;
}
.tipp-card {
    height: 70px;
    font-family: "Inter",sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.2px;
}
.game {
    position: absolute;
    z-index: 5;
    height: 100%;
    width: 100%;
    background:linear-gradient(to bottom, rgb(196, 14, 2), rgb(219, 1, 19));
    opacity: 1;
    backdrop-filter: grayscale(0.8) blur(30px);
    transition: 250ms;
    flex-direction: column;
}
.game.hidden {
    opacity: 0;
}
.game iframe {
    border: none;
    background:transparent;
    width: 100%;
    height: 100%;
}
* {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    box-shadow: none;
}