video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    filter: brightness(20%);
}

html {
    height: 100%;
}

html {
    font-family: 'Montserrat', sans-serif;
}

.viewport-header {
    position: relative;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo{
    width: 50vw;
}


main {
    display: none;
    width: 80vw;
    left: 10%;
    height: 40vh;
    overflow: auto;
    background: rgba(black, 0.66);
    color: white;
    position: relative;
    padding: 1rem;
}

footer {
    margin: 0;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 350px;
    background-color: #111;
    color: #ffffff;
    padding: 5px 20px;
    font-size: 20px;
    text-align: right;
    border-radius: 8px 0px 0px 8px;
}

.button {
    background-color: #f44336;
    /* Green */
    border: 2px solid #f44336;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 8px;
    margin: 5px 20px 5px 25px;
}

.button:hover {
    background-color: #ffffff;
    border: 2px solid #f44336;
    color: #f44336;
}