*{
    position: relative;
}
html, body{
    width: 100%;
    height: 100%;
    background: #000000;
    margin: 0;
}
#wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    z-index: 10;
}
.img{
    display: block;
    margin: 0 auto;
}
img{
    max-width: 100%;
}
.social{
    /* max-width: 320px; */
    margin: 0 auto;
    text-align: center;
}
.social a{
    display: inline-block;
    vertical-align: middle;
    margin: 1em 2em;
    border-radius: 100%;
    overflow: hidden;
    transition: all .5s ease;
    max-width: 68px;
}
.social a:hover{
    box-shadow: 0 0 0 10px #BB2025;
}
.m-background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.m-background__flames,
.m-background__images{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.m-background__flames{
    background-image: url(../../../template/images/flames.gif);
    opacity: .15;
    z-index: 10;
}

.m-background__images{
    z-index: 1;
}
.m-header__logo{
    max-width: 520px;
    display: block;
    margin: 0 auto;
    animation-name: breathe;
    animation-duration: 5s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    opacity: .15;
    transform: scale(.8);
}
iframe{
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 860px;
}
@keyframes breathe{
    0%{
        transform: scale(.8);
        opacity: .15;
    }
    25%{
        transform: scale(.8);
        opacity: .15;
    }
    50%{
        opacity: 1;
    }
    80%{
        transform: scale(1);
        opacity: 1;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}
.nadal{
    max-width: 1024px;
    align-items: center;
}
.pro{
    transform: rotate(-3deg);
}
.turbo{
    transform: rotate(4deg);
}
.nadal img{
    box-shadow: 4px 4px 4px 4px rgba(0,0,0,.6);
}
.nadal h2{
    color: rgba(255,255,255,.8);
}
.danger_btn:visited{
    color: white;
}
.a-mainImg{
    max-height: 1024px;
    width: auto;
}

/*-- NEW STYLES --*/
.m-header{
    text-align: center;
    margin: 1em 0;
}
.m-posterContainer{
    display: flex;
    justify-content: center;
    gap: 2em;   
    margin: 0 0 2em 0;
    height: max(800px, 75dvh);
}

.m-posterContainer .a-poster{
    flex: 1 0 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    min-width: 0;
    object-fit: contain;
}

.m-gev3{
    max-width: 600px;
    display: flex;
    justify-content: center;
    margin: 2em auto 6em;
    text-align: center;
}
.m-gev3__link{
    text-decoration: none;
}
.m-gev3__title{
    text-decoration: none;
    display: block;
    font-size: 1.5em;
    color: white;
    margin-top: 1em;
    font-weight: bold;
}
.m-gev3__link:hover{
    text-decoration: none;
}
.m-gev3__link:hover .m-gev3__title{
    transform: scale(1.25);
    text-decoration: none;
}

@media (max-width: 640px){
    .m-posterContainer{
        flex-direction: column;
    }

    .m-posterContainer .a-poster{
        width: 100%;
    }
}
