#parallax-background .layer1 {
    background-image: url("https://comuness2024.reaseuskadi.eus/img/pichirichis-parallax/PAISAJES/paisaje-_fondo_v4+degradado.jpg");
}

#parallax-background .layer2 {
    background-image: url("https://comuness2024.reaseuskadi.eus/img/pichirichis-parallax/NUBES/nubes_1+degradado.png");
}

#parallax-foreground .layer3 {
    background-image: url("https://comuness2024.reaseuskadi.eus/img/pichirichis-parallax/MONTES/montes_3+degradado.png");
}

#cosmonauta {
    position: absolute;
    max-width: 30rem;
    top: -5rem;
    left: -15rem;
    z-index: 3;
}

#cosmonauta img {
    max-width: 20rem;
    rotate: -10deg;
}

#intro {
    background: url("https://comuness2024.reaseuskadi.eus/img/blobs/ponentes/blob-intro-ponentes.png") no-repeat center center;
    background-size: 100% 100%;
    padding: 6rem 5rem 1rem 7rem;
    position: relative;
    color: white;
    max-width: 45rem;
    font-size: 1.2rem;
}

#intro .destacar {
    font-size: 2em;
    background: var(--azul-claro);
    padding: 1rem 2rem;
    color: var(--azul);
    font-weight: bold;
    display: inline-block;
    transform: rotate(-7deg);
    margin-left: 4rem;
    margin-top: 1rem;
    text-wrap: nowrap;
}

#video {
    background: url("https://comuness2024.reaseuskadi.eus/img/blobs/ponentes/forma-1.png") no-repeat center center;
    background-size: 100% 100%;
    padding: 7rem 7rem 8rem 10rem;
    position: relative;
    width: 56rem;

    margin-top: 6rem;
}
#video h2{
    margin-bottom: 2rem;
}



#recursos {
    background: url("https://comuness2024.reaseuskadi.eus/img/blobs/programa/forma-sabado@4x.png") no-repeat center center;
    background-size: 100% 100%;
    padding: 6rem 6rem 6rem 6rem;
    position: relative;
    color: white;
    max-width: 60rem;
    width: 60rem;
    text-align: center;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#recursos h2 {
    margin: 0 auto 2rem;
    max-width: 30em;
    max-width: 15em;
    color: var(--azul);
}

#recursos .presentacion {
    /* width: 45%; */
    display: inline-block;
    margin: .5rem 1rem;
}

.presentacion p{
    margin: 0;
}
.presentacion a {
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--azul);
    border-radius: 10rem;
    padding: 1rem 2rem;

    position: relative;
    overflow: hidden;

    transition: all .25s ease-in-out;
}

.presentacion a:before {
    content: '';
    display: block;
    position: absolute;
    top: -15%;
    left: -15%;
    height: 130%;
    width: 130%;
    border-radius: 100%;
    background: var(--azul);
    transform: scale(0);
    transform-origin: bottom center;
    z-index: -1;

    transition: transform .25s ease-in-out;
}
.presentacion a:hover{
    color: white;
}
.presentacion a:hover:before {
    transform: scale(100%);
}