body{
    margin: 0;
    padding: 0;
    color: white;
    width: 100%;
    height: 100%;
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 16px;
    font-family: "Arial Regular";
    box-sizing: border-box;
}
a{
    color:white;
}
.container{
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -2;
    text-align: center;
    background: url(img/background.jpg) no-repeat center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height:100%;
}
section{
    width: 100%;
    height: 100%;/*
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;*/
}
.logo{
    text-align: center;
    width: 100%;
}
.logo img {
    width: 128px;
    margin-top:27px;
}
.text{
    margin-top:15px;
    text-align: center;
    font-family: 'Wendy One', sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 0.8;
    letter-spacing: -1px;
    color: #04f0ff;
}
.text p{
    margin: 0;
    -webkit-text-stroke: 1.2px #383838;
    text-shadow: 0px 2px 5px #444444;
}
.footer{
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    color: white;
    background-color: rgba(0,0,0,.8);
    position: absolute;
}
.items_row{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.items_block{
    margin: 0 auto;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.items{
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 220px;  
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
}
.items a{
    display: block;
    width: 100%;
    height: 100%;
}
.items_img{
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.items_btn{
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
}
.items_btn p{    
    text-align: center;
    font-family: 'Wendy One', sans-serif;
    text-transform: uppercase;
    font-size: 31px;
    margin: 0;
    -webkit-text-stroke: 0.13vw #383838 ;
    color: #04f0ff ;
    text-shadow: -1px 2px 9px black;
}
.btn_play{
    margin-top:28px;
    display: none;
}
.btn_play a{
margin-bottom: 5px;
    display: block;
    width: 224px;
    height: 60px;
    margin: auto;
    box-sizing: border-box;
    background: url(img/btn.png);
    background-size: 99%;
    background-repeat: no-repeat;
    padding-top: 10px;
    text-align: center;
    font-family: 'Wendy One', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 22px;
    -webkit-text-stroke: 1.5px #0a0a0a;
    letter-spacing: 0px;
    line-height: 0.9;
    text-shadow: 0px 0px 4px black;
}

.gray {
    -webkit-filter: grayscale(94%); 
    -moz-filter: grayscale(94%); 
    -ms-filter: grayscale(94%); 
    -o-filter: grayscale(94%); 
    filter: grayscale(94%); 
    transition: 0.3s;   
}
.mono{
    transition: 0.3s !important;   
    color: #999999 !important;
    -webkit-text-stroke: 0.10vw white !important;
}
.item1{
    position: absolute;
    top:7%;
    left:15%;
}
.item2{
    position: absolute;
    bottom:7%;
    left:15%;
}
.item3{
    position: absolute;
    top:7%;
    right:15%;
}
.item4{
    position: absolute;
    bottom:7%;
    right:15%;
}
#overlay{
    position: absolute;
    z-index: 99999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    align-content: center; 
    justify-content: center; 
}
.over_txt{
    padding: 20px;
    width: 485px;
    height: 380px;
    background: white;
    border-radius: 15px;
    box-shadow: -3px 4px 25px black;
    box-sizing: border-box;
}
.over_txt p{
    font-family: 'Roboto', sans-serif;
    color:#282828;
    font-size: 21px;
}
.over_txt a.terms_link{
    text-transform: uppercase;
    text-decoration: underline;
    color:#282828;
    font-family: "Arial Regular";
}
.over_txt .button_notif{
    white-space: nowrap;
    display: block;
    box-sizing: border-box;
    margin: 0 0px;
    font-size: 24px;
    padding: 24px 20px;
    text-align: center;
    background: #ff7e00;
    border: initial;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    width: 440px;
    text-decoration: none;
}
.over_link{
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.over_link a{
    color:#282828;
    font-family: "Arial Regular";
    font-size: 18px;
    text-decoration: initial;
}
@-webkit-keyframes bounceIn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  20% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

      60% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
    75% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
      100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  20% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  40% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

      60% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
    75% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
      100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
    animation: bounceIn 1.5s  infinite;
}
@media ( min-width:1400px){ 
.logo img {
    width: 128px;
    margin-top: 29px;
}
.text {
    margin-top:25px;
    font-size: 50px;
}
.items {
    width: 255px;
} 
.items_btn p {
    font-size: 35px;
}
.btn_play{
    margin-top:52px;
}
.btn_play a{
    width: 288px;
    height: 78px;
    font-size: 28px;
    padding-top: 15px;
}
}
