@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    margin: 0;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    user-select: none;
    overflow: hidden;
}
header {
    margin: 0 auto;
    width: 431px;
}
h1 {
    background: url("https://i.ibb.co/Q9yv5Jk/flappy-bird-set.png") 0% 340px;
    padding: 1.2rem 0;
    margin: 0;
}
.score-container {
    display: flex;
    justify-content: space-between;
    padding: 8px 6px;
    background: #5EE270;
}

canvas {
    max-height: 100vh;
    max-width: 100vw;
    aspect-ratio: 1
}

.canvas-over {
    max-width: 100vw;
    max-height: 100vh;
    aspect-ratio: 1;
    width: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255, 0, 0, 0);
    pointer-events: none;
}

#currentScore {
    position: relative;
    color: white;
    text-shadow: 0 2px 3px;
    top: 16px;
    left: 16px;
}

#bestScore {
    position: absolute;
    color: white;
    text-shadow: 0 2px 3px;
    top: 16px;
    right: 16px;
    width: 100%;
    text-align: right;
    padding-right: 16px;
}

#nft-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    height: 100%;

    max-height: 100vh;
    max-width: 100vw;
    aspect-ratio: 1;
    /*background: red;*/

    z-index: 9999;
}

#nft-image {
    max-height: 100vh;
    max-width: 100vw;
    aspect-ratio: 1;
    margin: 0 auto;

    background: black no-repeat center;
    background-size: cover;
}

#nft-video {
    max-height: 100vh;
    max-width: 100vw;
    aspect-ratio: 1;
    margin: 0 auto;

    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}