*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 1;
}

html,
body{
    margin: 0 auto;
    background-color: #262626;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

a { 
    text-decoration:none;
    color: #e1f0db;
}

img {
    width: 100%;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.mask {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.mk {
    width: 350px;
    height: 400px;
    position: relative;
    box-sizing: border-box;
    padding: 10px 15px;
    text-align: center;
    border-radius: 25px;
    display: inline-block;
    background-color: #000000;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform:translate(-50%,-50%);
    
}

.games {
    width: 500px;
    margin: 0 auto;
}

.hover-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    text-align: center;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform:translate(-50%,-50%);
}

.logo {
    width: 180px;
    margin: 0 auto;
}

.title {
    width: 90%;
    margin: 4% auto 0;
    font-size: 1.9rem;
    color: #e1f0db;
}

.link-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 30px 0 20px;
}

.link-content .btn {
    width: 40%;
    max-width: 170px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin: 7.5px 9px;
    border-radius: 35px;
    background: rgba(0,0,0,.5);
    border: 1px solid;
    color: #e0b585;
    font-size: .9375em;
    cursor: pointer;
    position: relative;
}

.link-content .btn .a1{
    color: #e0b585;
}

.link-content .btn .a2{
    color: #62ff00;
}

.advantages{
    width: 500px;
    margin: 1% auto 0;
}

.provider {
    position: absolute;
    bottom: 0;
    width: 500px;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform:translate(-50%,-50%);
    margin-bottom: -50px;
  
}

.btnay {
    animation: scaleDrew 2.5s ease-in-out infinite;
    }
    @keyframes scaleDrew {
        0% {
          transform: scale(1);
        }
    
        25% {
          transform: scale(1.1);
        }
    
        50% {
          transform: scale(1);
        }
    
        75% {
          transform: scale(1.1);
        }
    }


@media(max-width:738px) {

    .hover-container {
        width: 90%;
        right: 5%;
    }
    .games {
        width: 100%;
        margin: 0 auto;
    }
    .logo {
        width: 140px;
        margin: 0 auto;
    }
    .advantages {
        width: 100%;
        margin: 1% auto 0;
    }

    .provider {
        width: 100%;
        margin: 0 auto;
        bottom: 0px;
        margin-bottom: -30px;
    }
}