body {margin:0;
padding:0;}

#hero {
    position: relative;
}

#hero video {
    height: 100vh;
    width: 100%;
    background-position: absolute;
    z-index: 10;
    object-fit: cover;
}

#hero .content {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
}
#hero .content h1 {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

#hero .content p {
    font-size: 18px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}