body{
    overflow: scroll;
    height: 100vh;
}


.container{
    width: 100%;
    display: flex;
    flex-direction: column;
    /* grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr) ;
    grid-template-areas: "nav"
                        "section"
                        "aside"
                        "footer" */

}

.navbar__content{
    padding: 0;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    height: 250px;
}

.navbar__content img{
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 120px;
    width: 300px;
    
}

#nameCharacter{
    width: 100%;
}

.main-content{
    height: 100px;
    align-items: center;
    align-content: center;
    padding: 0;
}

.main-content h1{
    margin-top: 20px;
    font-size: 30px;
}

.main-content input[type="text"]{
    width: 100%;
    margin-bottom: 20px;
}

.main-content button{
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}


.side-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 350px;
    margin: 20px 0;
 
}

.side-content p{
    margin-top: 20px;
    text-align: center;
    transform: rotate(0deg);
    margin-bottom: 20px;
  
}


.side-content img{
    width: 250px;
    height: 200px;
    margin-bottom: 40px;
}

.side-content .next {
    justify-content: center;
    position: relative;
    top: -34px;
    background-color: white;
}

.side-content .next p{
    right: 0;
}
.next #right{
    color: var(--blue);
}

.footer{
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 100vh;
    /* height: 300px; */
    /* flex-direction: column;
    align-items: center; */
    border-radius: 0 0 0 0;
    margin-top: 20px;
    background-color: var(--blue);
    animation: none;
    flex-direction: column;
    align-items: center;
    
}

.footer h2{
    position: absolute;
    top: -62px;
    animation: none;
    margin-top: 20px;
    opacity: 1;
}

.content_personajes{
    flex-direction: column;
}

.content_personajes .personaje{
    padding-top: 68px;
    position: relative;
    /* top: 110px; */
    height: 200px;
    left: 0;
    right: 0;
    margin: 0 auto;
    /* padding: 80px 0; */
    animation: none;
    transform: none;
}

.content_personajes .personaje img{
    width: 200px;
    height: 200px;
    transform: none;
    transition: none;
}



.modal__content{
    width: 100vw;
    padding: 0 10px;
}

.modal__content #close-content{
    position: relative;
    top: -55px;
    left: 352px;
    right: 0;
    bottom: 0;
}








