
@font-face {
    font-family: 'Press Start 2P';
    src: url('./fonts/PressStart2P-Regular.ttf') format('truetype');
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Press Start 2P', cursive;



}
.bg-pic-mob{
    display: none;
}
body{
    background-color: #364047;
    width: 100%;
    height: 100%;
   
    box-sizing: border-box;
   
  
}

.main-wraper {
  width: 100%;
  height: 100vh;
  position: relative;
}
.main-wraper .bg-pic{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: -1;
}

.logo-container img{
    max-width: 30vw;
}
.logo-container {
    padding-top: 6vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-container{
    padding-top: 6vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.button-container a{
    margin-bottom: 30px;
    display: block;
    color: white;
    font-size: 40px;
    text-decoration: none;
    text-align: center;
   padding: 37px;
    background-image: url('./button.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: ease-in .4s all;
  }
  .button-container a:hover{
    transform: scale(1.1);
    transition: ease-in .4s all;
  }

.copy-container{
    position: absolute;
    bottom: 30px;
    display: flex;
    width: 100%;
    justify-content: center;
}
.copy-container p{
    color: white;
 
    font-size: 20px;
}


.intro-container, .player-container {
    transition: opacity 0.8s ease-in-out;
    position: absolute; /* Dodane dla lepszego kontrolowania pozycji */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-container {
    opacity: 1;
    display: block;
}

.player-container {
    opacity: 0;
    display: none;
}

.hide {
    opacity: 0;
}

.show {
    opacity: 1;
}

.progress-bar-control{
    display: none!important;
}

@media (max-width: 1500px) {
    .logo-container img{
        max-width: 40vw;
    }
}

/* Punkt przerwania dla ekranów poniżej 1200px */
@media (max-width: 1200px) {
    .logo-container img{
        max-width: 50vw;
    }
}

/* Punkt przerwania dla ekranów poniżej 992px */
@media (max-width: 992px) {
    .logo-container img{
        max-width: 60vw;
    }
    .button-container a{
        font-size: 20px;
        padding: 20px;
    }
    .copy-container p{
        font-size: 15px;
    }
}

/* Punkt przerwania dla ekranów poniżej 768px */
@media (max-width: 768px) {
    .bg-pic-des{display: none;}
    .bg-pic-mob{
        display: block;
    }
    .logo-container img{
        max-width: 80vw;
    }
    .button-container a{
        font-size: 20px;
        padding: 16px;
    }
    .copy-container p{
        font-size: 14px;
        text-align: center;
        line-height: 20px;
    }
}