@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    color: white;
    font-family: "Raleway", "Roboto", "Arial";
}

#bgVideo {
    position: fixed;
    top: 0;
    right: 0;
    left: 50vw;
    min-width: 100%;
    min-height: 100%;
    height: 100vh;
    transform: translate(-50%);
    z-index: -9999;
}

.fullscreen {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
}

.darken {
    background-color: black;
    opacity: 0.9;
    z-index: -9998;
}

.darken-grad {
    background: linear-gradient(45deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -9998;
}

.bg-stripes {
    background-image: url("/assets/img/bg-v1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    z-index: -9997;
}

.centered {
    position: absolute;
    text-align: center;
    transform: translate(-50%,-50%);
    top: 50vh;
    left: 50vw;
}

.button {
    background-color: white;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0px;
    color: black;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 3px 2px 20px 5px rgba(0,0,0,0.6);
    transition: .4s;
    margin-top: 15px;
}

.button:hover {
    background-color: black;
    color: white;
}

h1 {
    font-size: 3rem;
    margin: 0px;
    margin-bottom: 13px;
    font-weight: bold;
}

p {
    margin-top: 0px;
    font-size: 1.5rem;
}

p>strong {
    font-weight: 600;
}

.left-align {
    margin-left: 3%;
    margin-top: 3%;
}

@media only screen and (max-width: 1500px) {
    .left-align {
      margin-left: 25px;
    }
}

@media only screen and (max-height: 1000px) {
    .left-align {
      margin-top: 25px;
    }
}

@media only screen and (max-width: 1350px) {
    .bg-stripes {
        background-image: url("/assets/img/bg-v2.svg");
    }
}

@media only screen and (max-width: 716px) {
    .bg-stripes {
        background-image: url("/assets/img/bg-v3.svg");
        background-size: contain;
        background-position: bottom;
    }
}

@media only screen and (max-width: 500px) {
    .left-align {
        margin-left: 15px;
    }
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
}