
.body {
    background-color: #000;
}

.content {
    position: fixed;
    width: 100%;
    height: 100%;
}

.centered {
    position: relative;
    float: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-top: -100px;
    padding: 20px;
}

.centered .logo {
    display: inline-block;
    max-width: 120px;
}

.centered .title {
    display: inline-block;
    margin-top: 50px;
    width: 400px;
    height: 28px;
}

.centered .text {
    margin-top: 30px;
    max-width: 580px;
    font-size: 20pt;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.bottom {
    position: fixed;
    width: 100%;
    bottom: 10px;
    padding: 20px;
    text-align: center;
}

.bottom .text {
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.text a {
    color: #fff;
    text-decoration: none;
}

.text a:hover {
    color: #FF685D;
}

@media (max-width: 500px) {
    .centered {
        margin-top: -50px;
    }
    .centered .title {
        width: 300px;
        height: 21px;
    }
        
    .centered .text {
        font-size: 18pt;
    }
}

@media (min-width: 1200px) {
    .centered .logo {
        max-width: 200px;
    }
    
    .centered .title {
        display: inline-block;
        margin-top: 60px;
        width: 600px;
        height: 42px;
    }
    
    .centered .text {
        margin-top: 40px;
        max-width: 720px;
        font-size: 26pt;
    }
}