* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body,
html {
    width: 100%;
    margin: 0;
    height: 100%;
    padding: 0;
    overflow-x: hidden;
    overflow: hidden;
}

@keyframes bounceSize {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

@font-face {
  font-family: Liquorstore-Italic; 
  src: url(../fonts/Liquorstore-Italic.otf); 
}

@font-face {
  font-family: tahoma; 
  src: url(../fonts/tahoma.ttf); 
}

.yellow {
    color: #FFE000;
}

.big-text {
    font-size: 140px;
}

body {
    /* background-color: blueviolet; */
    font-family: 'Liquorstore-Italic';
    background-image: url(../img/bg.jpg);
    background-position: center 0px;
    background-repeat: no-repeat;
    height: 975px;
    /* background-size: cover; */
}

body.vn {
    font-family: 'tahoma';
}

main {
    height: 100%;
    
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.content-box {
    margin: 150px 200px 300px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 600px;
}

p {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4.973px 31.082px rgba(0, 0, 0, 0.50);
    line-height: 80%; 
    font-size: 60px;
    line-height: 80%;
    text-transform: uppercase;
    margin-top: 50px;
}

body.bd p {
    font-size: 38px;
    line-height: 35px;
    font-weight: bold;
}

body.vn p {
    font-size: 55px;
    margin-top: 50px;
}

body.bd .big-text, body.th .big-text {
    font-size: 140px;
    line-height: 100px;
}

body.vn .big-text {
    font-size: 140px;
    line-height: 140px;
}

body.pk .big-text {
    font-size: 140px;
}

body.bd p, body.pk p {
    margin-top: 50px;
}

body.kr p, body.sc p {
    line-height: 65px;
}

body.jp p {
    line-height: 70px;
}

button {
    display: flex;
    width: 300px;
    height: 90px;
    background-position: center 0px;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: url(../img/button.png);
    color: white;
    font-size: 40px;
    text-transform: uppercase;
    border: none;
    margin-top: 35px;
    animation: bounceSize 2s infinite 2s;
}

body.bd button, body.jp button {
    font-size: 25px;
}

body.th button {
    font-size: 35px;
}

body.vn button {
    font-size: 24px;
}

button a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
}

/* Purple flame / smoke canvas */
main {
    position: relative;
    overflow: hidden;
}

.wrapper {
    position: relative;
    z-index: 2;
}

#smoke-video {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center bottom;

    z-index: 1;
    pointer-events: none;

    opacity: 0.95;
    mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
    #smoke-video {
        display: none;
    }
}