body{
     background-color:#fbf8e0;
     background-image: url("ocean.jpg");
     background-repeat:no-repeat;
     background-size:cover;
     background-position: center;
     background-attachment: fixed;
     height: 100vh;
     margin: 0; 
}
.box{
    max-width: 1000px;
    margin: 120px 120px 400px 300px;
    display: grid;
    grid-gap: 0px;
    grid-template-columns: 250px minmax(0,1fr);
}
header{
    border: 2px whitesmoke solid;
    border-radius: 0%;
    height:100px;
    grid-row: 1/2;
    grid-column: 2/3;
    background-image:url("https://dl.glitter-graphics.com/pub/3769/3769149bycj0hulyz.gif");
    background-repeat:no-repeat;
    background-size: cover;
    background-attachment: local;
    text-align:center;
    font-size:30px;
}
aside{
     border: 2px whitesmoke solid;
     border-radius: 0%;
     grid-row: 2/3;
     grid-column: 1/2;
     height: max-content;
     background-image: url("water.gif");
     text-align: center;
}
main{
     border: 2px whitesmoke solid;
     border-radius: 0%;
     grid-row: 2/3;
     grid-column: 2/3;
     height: 400px;
     background-image:url("https://i.pinimg.com/736x/3c/1b/11/3c1b11fe453290be7cc9a5bddfb26af2.jpg");
     background-size:cover;
     background-position: center;
     background-repeat:no-repeat;
     background-attachment: local;
     text-align: center;
     overflow-y: scroll;
     scrollbar-color: rgb(36, 119, 235) #f1f1f1; /* Color de la barra (rojo) y del fondo (gris) */
     scrollbar-width: thin; 
}
.mainpeq textarea{
                width: 90%;
                height: 200px;
                padding: 10px;
                border: 1px solid #666;
                box-sizing: border-box;
                background-color: rgb(249, 250, 250);
                resize: none;
                padding: 12px;
                border: 1px solid #ccc;
                border-radius: 8px;
                font-family: Georgia, 'Times New Roman', Times, serif;
                font-size: medium;
                text-align: center;
               }
input:disabled, textarea:disabled {
           color: #0a70ab;
           -webkit-text-fill-color: #0777e0;
           opacity: 1;
}