body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    font-family: "Raleway", sans-serif;
}

.hero-video {
    position: relative;
}

.hero-video::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: .5;
    pointer-events: none;
}

.hero-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-logo {
    position: absolute;
    left: 50%;
    top: 18%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-logo img {
    width: 300px;
    margin-bottom: 45px;
}

.text {
    letter-spacing: 7px;
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .hero-video video {
        height: 100vh;
    }

    .hero-logo img {
        width: 160px;
    }

    .text {
        line-height: 1.25;
    }
}