*{
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #333;
    width: 100vw;
    height: 100vh;
}

h1{
    color: #fff;
    font-size: 3em;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.75);
    font-weight: normal;
}

h2{
    color: #fff;
    font-size: 1.1em;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.75);
    letter-spacing: 2px;
}

.btn-container{
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px
}

.btn-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
    background: url('/landing/heart.svg');
    background-size: cover;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.75);
    cursor: pointer;
    font-size: 0.8em;
    transition: width 200ms, height 200ms, background 200ms, font-size 200ms;
}

.btn-text:hover{
    width: 100%;
    height: 100%;
    font-size: 0.9em;
    transition: width 200ms, height 200ms, background 200ms, font-size 200ms;
}

.highlight{
    color: #2676EF;
}

#videoBG {
    position:fixed;
    z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
    #videoBG {
        width:100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    #videoBG { 
        width:auto;
        height: 100%;
    }
}