 @font-face {
    font-family: myFirstFont;
    src: url(../fonts/Prompt-Regular.ttf);
}

@font-face {
    font-family: myFirstFontthin;
    src: url(../fonts/Prompt-ExtraLight.ttf);
} 

* {
    font-family: myFirstFont;
} 

@media only screen and (min-width: 600px) {
    .forpc {
        display: block;
    }

    .formb {
        display: none;
    }

    .total {
        font-size: 18px;
        color: #157919;
        font-weight: bold;
        text-align: right;
        padding-right: 20px;
    }

    .nameGame {
        font-size: 16px;
        color: #000;
        margin-bottom: 0%;
        margin-left: 10px;
        
    }

    .detail {
        font-size: 20px;
        color: #FFF;
        margin-bottom: 0%;
        line-height: 4rem;
        padding-left: 10px;
        ;
    }
}

@media only screen and (max-width: 600px) {
    .formb {
        display: block;
    }

    .forpc {
        display: none;
    }

    .total {
        font-size: 14px;
        color: #157919;
        font-weight: bold;
        text-align: right;
        padding-right: 5px;
    }

    .nameGame {
        font-size: 14px;
        color: #000;
        margin-bottom: 0%;
        margin-left: 10px;
    }

    .detail {
        font-size: 15px;
        color: #FFF;
        margin-bottom: 0%;
        line-height: 2.5rem;
        padding-left: 3px;
        ;
    }
}



body {
    color: #FFF;
    background-color: transparent;
}

.background-dark {
    margin: 0;
    padding: 0;
    height: auto;
   
}

.background-black {
    margin: 0;
    padding: 0;
    height: auto;
    background-color: #181414;
}

.background-red {
    margin: 0;
    padding: 0;
    height: auto;
    background: linear-gradient(180deg,#D70178 0%, #EC5AAC 70%);
    
}

.background-red-gradient {
    background: rgb(137, 0, 3);
    background: linear-gradient(90deg,#D6000A 0%, #4C020D 70%);
}

.background-red2-gradient {
    background-image: linear-gradient(#1987E6 0%, #1ABEE6 100%);
}

html,
body {
    position: relative;

}

body {
    font-size: 16px;
    color: #000;
    margin: 0;
    padding: 0;
    overflow-y: hidden;
    overflow-x: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}

.blink {
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.7s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}

.glow {
    color: #fff;
    text-shadow: #FFF 1px 0 5px;
}

p {
    font-size: 16px;
    color: #000;
    margin-bottom: 0%;
}
a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}
h2 {
  font-size: 20px;
  font-family: Arial;
  position: relative;
  overflow: hidden;
}


h2:after {
  display: inline-block;
  content: "";
  height: 2px;
  background: rgba(255, 255, 255, .2);
  position: absolute;
  width: 100%;
  top: 55%;
  margin-top: -2px;
  margin-left:10px;
}


