/* Selector universal */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: sans-serif;
}

/* Estilo para el contenedor #chat */
#chat {
    position: fixed;
    width: 250px;
    height: 40px;
    bottom: 0;
    right: 20px;
    background: magenta;
    z-index: 1;
    color: white;
    text-align: center;
    line-height: 40px;
    font-family: 'Kaushan Script', cursive;
    font-size: 20px;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
}

/* Estilo para el header */
header {
    position: relative;
    margin: 20px auto;
    width: 1000px;
    height: 120px;
}

#logo {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 200px;
    height: 60px;
    font-family: 'Kaushan Script', cursive;
    font-size: 50px;
    text-align: center;
    line-height: 60px;
}

.redes {
    position: absolute;
    width: 42px;
    height: 42px;
    background: #ccc;
    border-radius: 100%;
    text-align: center;
    line-height: 42px;
    color: white;
}

#icono1 {
    top: 42px;
    right: 120px;
    background: blue;
}

#icono2 {
    top: 42px;
    right: 71px;
    background: green;
}

#icono3 {
    top: 42px;
    right: 19px;
    background: white;
}

/* Estilo para la barra de navegación */
nav {
    position: relative;
    margin: auto;
    width: 1000px;
    height: 48px;
}

.botones {
    float: left;
    width: 196px;
    height: 48px;
    margin: 0px 2px;
    background: rgba(100, 0, 255, 1);
    font-family: 'Kaushan Script', cursive;
    color: white;
    text-align: center;
    line-height: 48px;
    white-space: normal;
}

.botones:hover {
    background: rgba(255, 100, 0, 0.8);
}

.botones:active {
    background: rgba(0, 255, 100, 0.8);
}

/* Estilo para el contenedor #top */
#top {
    position: relative;
    margin: 20px auto;
    width: 1000px;
    height: 192px;
}

#top ul {
    width: 1010px;
    height: 192px;
}

#top ul li {
    float: left;
    width: 326px;
    height: 192px;
    margin-right: 10px;
    text-align: center;
}

#top ul li img {
    border-radius: 100%;
    height: 100px;
}

#top ul li h1 {
    font-family: 'Kaushan Script', cursive;
}

#top ul li p {
    font-size: 14px;
    margin: 10px;
}

/* Estilo para el section */
section {
    position: relative;
    margin: auto;
    width: 1000px;
    height: 453px;
}

aside#izq {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 453px;
}

aside#izq ul li a {
    text-decoration: none;
}

article {
    position: absolute;
    left: 200px;
    top: 0;
    width: 600px;
    height: 453px;
}

article h1 {
    font-family: 'Kaushan Script', cursive;
    font-size: 40px;
    margin: 20px;
}

article p img {
    float: left;
    margin-right: 20px;
}

article p {
    margin: 5px 20px;
    font-size: 14px;
    text-align: justify;
}

aside#der {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 453px;
}

aside#der h1 {
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(100, 0, 255, 1);
    color: white;
    margin-bottom: 5px;
}

aside#der input {
    padding: 10px;
    margin: 5px 0;
    width: 176px;
}

aside#der input[type="submit"] {
    width: 200px;
    background: rgba(100, 0, 100, 0.5);
    border: 0;
}

/* Estilo para el footer */
footer {
    position: relative;
    margin: 20px auto;
    width: 1000px;
    height: 70px;
    background: rgba(100, 0, 255, 1);
    text-align: center;
    line-height: 70px;
    color: white;
}
/*Quita el subrayado y pone el color blanco en los botones*/
.botones a {
    color: white; /* Define el color de la letra como blanco */
    text-decoration: none; /* Quita el subrayado */
    
}
/*cambia de color el cursor en el boton de enviar en el formulario.
[type="submit"]selecciona unicamente los elementos <input> cuyo atributo type sea "submit"
Aplica estilos solo al boton de envio (submit) dentro del formulario*/
aside#der input[type="submit"]:hover {
    background-color: rgba(200, 0, 200, 0.8); /* Fondo del boton al pasar el cursor */
    color: white;                             /* Cambiar el color del texto */
    cursor: pointer;                          /* Cambiar el cursor a un puntero */
}


