main {
    min-height: 450px;
    color: #FFF;
}

h2 {
    color: #FF0;
    border-bottom: 2px solid #FF0;
    animation: enter 5s;
    border-radius: 50%/3px 2px 5px 10px;
    text-align: center;
}

body {
    background: #000;
    animation: open 2s;
}

#cal img {
    display: block;
    width: 20px;
    margin: 0 auto;
}

.mainPresentation p {
    background: #333;
    padding: 5px;
}

/*VOD*/
.VOD {
    display: flex;
    justify-content: center;
    position: relative;
}

.VOD img {
    width: 75%;
    border-radius: 25%;
    transition: .7s;
    filter: drop-shadow(3px 3px 3px #000);
}

.VOD a {
    position: absolute;
    bottom: 0;
    color: #33E;
    text-shadow: 2px 2px 2px #FFF;
    background: #555E;
    padding: 6px;
    transition: .7s;
}
.VOD a:hover{
    color: #E33;
    text-shadow: 2px 2px 2px #33E;
}
.VOD:hover img {
    transform: scale(1.2);
    border-radius: 0;
}

.VOD h3 {
    position: absolute;
    background: #999A;
}
/*Fin VOD*/
/*Player*/
#twitch-embed {
    width: 75%;
}
#twitch-embed iframe{
    width: 500px;
  aspect-ratio: 16/9;
}
/*Fin Player*/
@media (min-width: 992px) {


    #twitch-embed {
        width: 50%;
    }

    #twitch-embed+div {
        width: 39%;
        margin: 10px;
    }
    #livePresentation img{
        width: 50%;
    }
}
@keyframes enter {
    from {
        transform: translateX(100px);
    }

    to {
        transform: translateX(1);
    }
}

@keyframes open {
    from {

        opacity: 0;
    }

    to {
        opacity: 1;
    }
}