<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #E0AAFF;
}



.headerbox{
    display: flex;
    height: 80px;
    width: 1505px;
    background-color: #78C6A3;
    justify-content: center;
    align-items: center;
    color: white;
}

.navbox{
    display: flex;
    height: 30px;
    width: 1505px;
    background-color: #67B99A;
    color: white;
    align-items: center;
    justify-content: center;
}

.asidebox{
    height: 1000px;
    width: 400px;
    background-color: #56AB91;
    padding: 10px;
    color: white;
    flex-direction: row;
    
}

img{
    padding: 60px;
}

.sectionbox{
    width: 1090px;
    height: 920px;
    background-color: #88D4AB;
    text-align: center;
    padding: 5%;
    
}

section{
    flex-direction: row;
    display: flex;
    color: white;
    
    
}

.separacion{
    padding: 5px;
}




header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #7B2CBF;
    color: white;
    padding: 10px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /*AsegÃērate de que estÃŠ por encima de otros elementos*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /*Opcional: Sombra para mayor contraste*/
}

.logo{
    font-size: 1.5em;
    font-weight: bold;
    animation: logoFadeIn 4s ease-in-out;
}

@keyframes logoFadeIn{
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu ul{
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    animation: menuSlideIn 2s ease-out;
}

@keyframes menuSlideIn{
    0%{
        transform: translateX(100%);
    }

    100%{
        transform: translateX(0);
    }
}

.menu ul li a{
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease;
}

.menu ul li a:hover{
    color: #007bff;
}


/*imagenes*/

.imagenes{
    width: 200px;
    height: auto;
}</pre></body></html>