#img-d {
    display: block;
}

#img-m {
    display: none
}

video {
    position: fixed;
    width: 100.5vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

h1 {
    font-weight: 900;
    text-align: center;
}

h4{
    font-weight: 100;
}

footer a, a > img{
    color: white;
    text-decoration: none;
    opacity: 0.75;
    transition-duration: 0.3s;
}

footer:hover a, a:hover > img{
    opacity: 1;
    color: white;
}

.logo-a {
    width: 480px;
}

img {
    max-width: 480px;
    margin-bottom: 24px;
    position: relative;
    left: -24px;
    pointer-events: none;
}

main {
    color: white;
    z-index: 3;
    position: relative;
    font-family: 'Lato', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}

footer {
    color: white;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 5;
}


.overlay {
    width: 100vw;
    height: 100vh;
    background-color: rgba(30, 5, 23, 1);
    position: fixed;
    z-index: 0;
    pointer-events: none;
}

.button-parent {
    margin-top: 20px;
}

.btn-primary {
    width: 180px;
    padding: 14px;
    background-color: #bc2d2d;
    color: white;
    border-radius: 0;
    border-width: 0;
}

.btn-primary:hover {
    background-color: #ff3838 !important;
}

.btn:first-of-type {
    margin-right: 24px;
}

.button-parent {
    display: flex;
}

@media screen and (max-width: 576px) {
    #img-d {
        display: none;
    }

    #img-m {
        display: block;
    }
    main{
        height: 80vh;
    }
    h4 {
        font-weight: 100;
        font-size: 24px;
        margin-top: 12px;
    }
    p{
        font-size: 9px;
    }

    img {
        max-width: 180px;
        left: -2px;
        margin-bottom: 12px;
    }

    .button-parent {
        flex-direction: column;
        margin-top: 20px;
    }

    .btn:first-of-type {
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .logo-a {
        width: 180px;
    }
}