@font-face {
font-family: 'willow';
src: url(willow.ttf);
}
body {
    background-image: url(w01-bg-ribbon.gif);
    background-position: fill;
    background-repeat: repeat;
}

#cuadro {
    border-image: url(borderosita.png) 9 fill round;
    border-width: 7px;
    border-style: solid;
    min-height: 100%;
    font-size: medium;
    width: 15%;
    position: fixed left;
    text-align: center;
    margin-left: 50px;
}

#platofresa{
    height: auto;
    border-image: url(platofresa.gif) 9 fill round;
    border-image-repeat: stretch;
    border-style: solid;
    border-width: 7px;
    width: 120px;
    align-items: center center;
    display: flex;
    justify-content: center;
    margin: auto;
}
.caja-contenedor {
    font-family: 'willow';
    border-image: url(borderosita.png) 9 fill round;
    border-width: 7px;
    border-style: solid;
    position: fixed;
    top: 50px;
    left: 50px;
    bottom: 50px;
    width: 15%;
    text-align: center;
    font-size: medium;
}

.btn-desplegar {
    background-color: #ffbcbc;
    color: white;
    border: 3px solid #ffcbff;
    padding: 8px 12px;
    cursor: pointer;
    width: 90%;
    margin: 0 auto 5px auto;
    display: block;
    text-align: center;
    font-weight: bold;
    border-radius: 15px;
    font-family: 'willow';
    font-size: medium;
}

.btn-desplegar:hover {
    background-color: #fd8c8c;
    transform: translate(1px, 1px);
}


.menu-oculto {
    display: none;
}

.mostrar {
    display: block !important;
    animation: aparecerDerecha 0.4s ease-in-out;
}

#menu2 {
    font-family: willow;
    border-image: url(bordecositas.png) 9 fill round;
    border-width: 7px;
    border-style: solid;
    position: fixed;
    top: 50px;
    right: 50px;
    bottom: 50px;
    width: 55%;
    padding: 20px;
    text-align: center;
    overflow-y: auto;
    margin-right: 100px;
}

p{
      text-justify: auto;
  text-align: justify;
  font-size: medium;
  font-family: 'willow';
}
@keyframes aparecerDerecha {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}