

body {
    margin: 0;
    padding: 0;
    background: #2c2b2b;
    color: white;
    font-family: helvetica, sans-serif;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

.header {
    height: 100vh;
}

.video-background {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

h1{ 
    font-size: 4vh;
    font-weight: bold;
}

h2{ 
    font-size: 2vh;
    font-weight: normal;
}

.tagline{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 70%;
    color: white;
    text-align: center;
    vertical-align: middle;
}

.herobg {
    position: absolute;
    top: 33vh;
    left: 16.5%;
    height: 33vh;
    width: 66%;
    background: #242c33;
    opacity: 0.8;
}

.address {
    position: absolute;
    top: 70vh;
    height: 6vh;
    width: 100%;
    text-align: center;
}

@media (max-width: 770px) {
    .herobg {
        position: absolute;
        top: 31vh;
        height: 35vh;
    }
    .tagline {
        width: 50%;
    }
    h1 {
        font-size: 2.8vh;
    }
    h2 {
        font-size: 1.5vh;
    }
}