html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    z-index: -1000;
    overflow: hidden;
    object-fit: cover;
}

a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: underline;
}

.text-subheading {
    font-size: 14px;
}

.count {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 10em;
    color: white;
}

.content {
    height: 100%;
    min-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.center {
    text-align: center;
    padding: 10px;
}

.button-wrap-inner {
    padding: 25px;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 50px;
    padding: 15px 30px 15px 30px;
    border: solid #ffffff 2px;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.ropes {
    position: absolute;
    font-family: 'Arial', sans-serif;
    margin: 10px;
    color: white;
}

.rope-date {
    display: block;
}

.rope-large-inner {
    pointer-events: none;
    text-align: center;
    width: 100%;
}

.rope-large {
    -webkit-transition: top 1s;
    -moz-transition: top 1s;
    -ms-transition: top 1s;
    -o-transition: top 1s;
    transition: top 1s;

    top: -1000px;

    position: absolute;
    height: 80%;

    animation-duration: 2s;
    animation-name: wiggle;
    animation-iteration-count: infinite;
    animation-direction: alternate;

    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    transform-origin: 60% 0;
}


/* Standard syntax */
@keyframes wiggle {
    from {
        -ms-transform: rotate(2deg); /* IE 9 */
        -webkit-transform: rotate(2deg); /* Chrome, Safari, Opera */
        transform: rotate(2deg);
    }

    to {
        -ms-transform: rotate(-4deg); /* IE 9 */
        -webkit-transform: rotate(-4deg); /* Chrome, Safari, Opera */
        transform: rotate(-4deg);
    }
}