@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@600&display=swap');

* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    margin: 0;
    height: 100vh;
    font-family: 'Crimson Text', serif;
}

#bg_video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container_fluid {
    width: 100%;
    padding: 0 15px;
    text-align: right;
}

.container {
    margin: auto;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1, h2, p, a {
    margin: 0;
    color: white;
    font-size: 3vw;
    text-align: center;
    font-weight: 600;
}

h1 {
    margin-bottom: 30px;
}

.brand {
    margin-top: 35px;
    display: inline-block;
    max-width: 17vw;
    width: 100%;
}

.brand img {
    width: 100%;
}

.new_logo {
    max-width: 15vw;
    width: 100%;
    margin-bottom: 80px;
}

.new_logo img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.link {
    text-align: center;
    font-size: 36px;
}

.link p {
    margin: 0;
    color: white;
}

.link a {
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .new_logo {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 992px) {
    h1, h2, p, a {
        font-size: 5vw;
    }

    .new_logo {
        max-width: 24vw;
    }

    .brand {
        max-width: 26vw;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        margin-bottom: 15px;
    }
}