@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');
* {
    font-family: helvetica, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
}
body {
    background-color: rgba(0,0,0, .95);
    height: 100vh;
    margin: 0;
}

/********************
* video game screen *
********************/
.game-title h1 {
/***** Flappy Bird *****/
    text-align: center;
    font-family: 'Carter One', cursive;
    color: rgb(251, 176, 37);
    font-size: 3em;
    line-height: 150%;
    letter-spacing: 4px;
    text-shadow: 2px 4px rgba(250,250,250, 1);
    margin: 0;
    position: relative;
    top: 10px;
}
.game-screen {
    /* background-color: rgb(69, 184, 194); */
    width: 300px;
    height: 500px;
    margin: 0 auto;
    position: relative;
    top: 50px;
}
    canvas {
        background-color: 
        black
        /* #00bbc4 */
        /* #d2ce89 */
        ;
        display: block;
        width: 300px;
        height: 500px;
        margin: 0 auto;
        border-radius: 10px;
    }
    .game-description {
        color: #f0f0f0;
        line-height: 2em;
        text-align: center;
    }
    .logo-gif {
        position: absolute;
        top: 100px;
        width: 500px;
        left: 60px;
    }
    .logo-gif2{
        
        position: absolute;
        top: 100px;
        width: 500px;
        left: 950px;
    }

@media (max-width: 600px) {
  html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
  }
  .game-container,
  #game,
  canvas {
    position: fixed !important;
    top: 0; left: 0;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 100 !important;
    background: #000 !important;
    display: block;
  }
  /* Ukryj inne elementy przeszkadzające */
  .top-bar,
  .left-bar,
  .center-bar,
  .footer {
    display: none !important;
    visibility: hidden !important;
  }
}