* {
    font-family: 'Kanit', sans-serif;
    pointer-events: none
}

html, body {
    padding: 0;
    margin: 0
}

.background-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000 url('bg_css.png') repeat;
    opacity: .65;
    z-index: 2
}

.video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform:translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.5s
}

.video.play {
    opacity: 1
}

.content {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 3;
    align-items: center;
    justify-content: center
}

.info {
    position: relative;
    text-align: center;
    width: 503px;
    min-width: 503px;
    height: 359px
}

.logo {
    width: 480px;
    height: 288px;
    opacity: 0.85;
    filter: contrast(125%)
}

.message-background {
    position: absolute;
    z-index: -1;
    width: 593px;
    height: 146px;
    top: 238px;
    left: -42px;
    opacity: 0;
    transform: rotate(-1deg)
}

.message {
    margin-top: 9px;
    text-transform: uppercase;
    line-height: 34px
}

h1, span {
    padding: 0;
    margin: 0;
    background: #fff url('bg_css.png') repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(0, 0, 0, 0);
    font-size: 50px;
    text-shadow: rgba(0, 0, 0, 0.53) 1px 2px 0, rgba(162, 162, 162, 0.58) 0 0 0;
    font-weight: 100
}

span {
    font-size: 18px
}

@media (max-width: 767px) {
    .info {
        transform: scale(0.8)
    }
}

@media (max-width: 520px) {
    .info {
        transform: scale(0.7)
    }
}

@media (max-width: 400px) {
    .info {
        transform: scale(0.55)
    }
}


a {
    pointer-events: auto !important;
    color: #FFF;
}

a img {
    vertical-align: middle
}