body > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

body > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.6);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

body > .overlay > .content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
}

body > .overlay > .content > .logo {
    margin: 0 auto;
    width: 300px;
    height: 254px;
    background: url('../images/logo.png') no-repeat center center / cover;
}

body > .overlay > .content > .title {
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    margin: 20px auto;
}

body > .overlay > .content > .address > .title,
body > .overlay > .content > .address > .text,
body > .overlay > .content > .address > a{
    font-family: "Roboto", sans-serif;
}

body > .overlay > .content > .address > .title {
    font-size: 20px;
    font-weight: 700;
}
body > .overlay > .content > .address > .text {
    margin-bottom: 30px;
}
body > .overlay > .content > .address > a {
    padding: 15px 30px;
    background: #4ba8d7;
    box-sizing: border-box;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
}
