@import url('https://fonts.googleapis.com/css?family=Cinzel');
@import url('https://fonts.googleapis.com/css?family=Cinzel:700');

@font-face {
    font-family: 'Nanami';
    src: url('../fonts/Nanami-Regular.otf') format('opentype')
}
.wrapper {
    font-family: 'Cinzel', serif;
    width: 100vw;
    height: 100vh;
    background-image: url(../images/main_bg.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
}
.wrapper-container {
    width: 70%;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    vertical-align: middle;
}
.main-logo {
    width: 15vw;
    margin-bottom: 50px;
}
.wrapper-container h1 {
    font-size: 4vw;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    width: 100%;
}
.wrapper-bonus {
    margin: 50px 0;
    width: 100%;
    text-align: center;
}
.wrapper-bonus h3 {
    color: white;
    text-align: center;
    font-size: 1.5vw;
}
.wrapper-code {
    display: inline-block;
    margin-top: 25px;
    font-family: Arial, Helvetica, sans-serif;
    color: #f4b91b;
    text-transform: uppercase;
    text-align: center;
    padding: 1.5vw 4vw;
    font-size: 2.5vw;
    border: 2px dashed #ffffff;
    border-radius: 75px;
    font-weight: bold;
}
.wrapper-b25 {
    text-align: center;
    color: white;
    font-size: 2vw;
    font-family: 'Nanami';
    margin-top: 25px;
}
.play-link {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    cursor: pointer;
    background-image: url(../images/button.png);
    background-position: center;
    background-repeat: no-repeat;
}
.play-link a {
    display: block;
    outline: none;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    color: #f4b91b;
    font-size: 32px;
    font-weight: 700;
    padding: 42px 43px;
}
.play-link a:after {
    content: "";
    position: absolute; top: 0; left: -7em;
    width: 200%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,.0), rgba(255,255,255,.3), rgba(255,255,255,.0)) no-repeat -2em 0%;
    background-size: 6em 100%;
    transform: skewX(-50deg);
    animation-name: play-now;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}
.play-link a:hover:after {
    animation: none;
}
@keyframes play-now {
      100% {
        background-position: 100% 0%;
      }
  }
@media screen and (min-width: 768px) and (max-width:1024px) {
    .wrapper {
        min-height: 100vh;
        height: max-content;
        background-image: url(../images/bg_small.jpg);
    }
    .wrapper-container {
        width: 100%;
        margin: 100px 0;
    }
    .main-logo {
        width: 25vw;
        margin-bottom: 50px;
    }
    .wrapper-container h1 {
        font-size: 3.5rem;
    }
    .wrapper-bonus h3 {
        font-size: 1.5rem;
    }
    .wrapper-bonus {
        margin: 40px 0;
    }
    .wrapper-code {
        margin-top: 25px;
        padding: 20px 55px;
        font-size: 2rem;
        border-radius: 50px;
    }
    .wrapper-b25 {
        font-size: 2rem;
        margin-top: 25px;
    }
    .play-link a {
        background-size: contain;
        font-size: 2rem;
        padding: 42px 44px;
    }
}
@media screen and (max-width: 767px) {
    .wrapper {
        min-height: 100vh;
        height: max-content;
        background-image: url(../images/bg_small.jpg);
    }
    .wrapper-container {
        width: 100%;
        margin: 100px 0;
    }
    .main-logo {
        width: 35vw;
        margin-bottom: 30px;
    }
    .wrapper-container h1 {
        font-size: 1.5rem;
    }
    .wrapper-bonus h3 {
        font-size: 1rem;
    }
    .wrapper-bonus {
        margin: 40px 0;
    }
    .wrapper-code {
        margin-top: 25px;
        padding: 20px 55px;
        font-size: 1.2rem;
        border-radius: 50px;
    }
    .wrapper-b25 {
        font-size: 1rem;
        margin-top: 25px;
    }
    .play-link {
        border-radius: 20px;
        background-size: contain;
    }
    .play-link a {
        
        font-size: 1rem;
        padding: 20px 20px;
    }
    .play-link a:after {
        content: "";
        position: absolute; top: 0; left: -7em;
        width: 200%;
        height: 100%;
        background: linear-gradient(to left, rgba(255,255,255,.0), rgba(255,255,255,.3), rgba(255,255,255,.0)) no-repeat -2em 0%;
        background-size: 5em 100%;
        transform: skewX(-50deg);
        animation-name: play-now;
        animation-duration: 3s;
        animation-delay: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: ease;
    }
}
