* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-size: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #FFFFFF;
}
p {
    color: #FFFFFF;
}
#backgroundVideo {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
#backgroundVideo:after {
    content: "";
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.75);
}
#backgroundVideo video {
    position: absolute;
    width: 100%;
    height: 120%;
    top: -10%;
    object-fit: cover;
}

/*///////////////////////////////////////////////////////
// BiShop
//////////////////////////////////////////////////////*/

#mainContent > header {
    position: absolute;
    z-index: 100;
    width: 100%;
    max-width: 800px;
    padding: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#mainContent > header h1, #mainContent > header h2 {
    color: #FFFFFF;
    text-align: center;
}
#mainContent > header span {
    text-transform: uppercase;
}
#mainContent > header h1 {
    font-family: 'Chakra Petch', Arial, sans-serif;
    font-weight: 700;
    font-size: 8vw;
    color: #f134a2;
    margin: 0 0 20px 0;
}
#mainContent > header h2 {
    font-size: 2vw;
    line-height: 1.1em;
    margin: 20px 0;
}
@media (max-width: 767px) {
    #mainContent > header h1 {
        font-size: 16vw;
    }
    #mainContent > header h2 {
        font-size: 6vw;
    }
}


