*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Lato, sans-serif;
}

.home {
    height: 100vh;
    position: relative;
}
video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-content {
    padding: 0px 0px 20px 0px;
    position: absolute;
    background: rgba(0,0,0,0.1);
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    text-align: center;
    width: 100%;
}

h1 {
    font-family: Playfair Display, serif;
    font-size: 130px;
    line-height: 1.1;
    text-shadow: 0 0 1em rgba(0,0,0,0.95);
    color: rgba(255, 255, 255, 0.99);
}

.home p {
    font-size: 40px;
    margin-top: 10px;
    text-shadow: 0 0 1em rgba(0,0,0,0.95);
    color: rgba(255, 255, 255, 0.99);
}

.home-content button {
    display: block;
    font-size: 25px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: rgba(0,0,0,0.1);
    color: #fff;
    margin: 50px auto 0;
    padding: 12px 20px;
    cursor: pointer;
}
