/* GENERAL  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');

body {
    font-family: 'Schoolbell', cursive;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

iframe {
    z-index: 0;
    border: none;
}

p {
    margin-bottom: 1rem;

}

button {
    color: #392927;
}


/* INTRO Y OUTRO */

#intro-fig {
    position: relative;
}

#cinta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    width: 100%;
    z-index: 2;

    padding: 1rem;
    font-size: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}


#outro {
    padding: 2rem;
    text-align: center;
    font-size: 14px;
}

/* TEXT BLOCKS */
.text-block {
    padding: 4rem;
    margin-block: 2rem;
    margin-inline: auto;
    max-width: clamp(300px, 80%, 1040px);
    
}

.text-block h1 {
    font-size: 2rem;

}

.textointro {
    font-size: 18px

}

/* SCROLLAMA STYLE */

.scrolly {
    position: relative;
    padding: 0.1px;
 
}

.figure__full {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.figure__semifull {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 20%;
    height: 100vh;
    width: 80vw;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article__center {
    position: relative;
    padding: 0;
    max-width: 30rem;
    margin: 0 auto;
    z-index: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.article__left {
    position: relative;
    padding: 0;
    max-width: 30rem;
    margin: 0 auto;
    right: 20%;
    z-index: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

}

.step {
    margin: 40rem auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.25em;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 20%) 0px 0px 10px;
    color: black;
    z-index: 1;

}

/* IMAGES */
.image__full {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 100vh;
    max-width: 100vw;
}

.image__center {
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-height: 100vh;
    max-width: 100vw;
    padding: 2rem;
}

.logo {
    height: 180px;

}

.logoraf {
    height: 140px;
}


.creditostext {
    text-align: center;
}

.text-block {
    color: black;
    text-align: center;
}

/*  MEDIA QUERIES */

@media screen and (max-width: 600px) {
    .figure__full {
        height: 100vh;
        width: 100vw;
    }

    .figure__semifull {
        height: 100vh;
        width: 100vw;
    }

    .article__center {
        max-width: 20rem;
        margin: 0 auto;
    }

    .article__left {
        max-width: 20rem;
        margin: 0 auto;
        right: 0;
    }

    .step {
        margin: 40rem auto;
    }

}