* {
    font-family: "Rajdhani", sans-serif;
}
header {
    background-color: #ae4a93;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
header a {
    color: #ee2737;
    text-decoration: none;
}
header a:hover {
    text-decoration: none;
    color: #ee2737;
}
header img {
    height: 50px;
    margin-left: 20px;
}
nav {
    background-color: #ee2737; /* Fondo rojo */
    display: flex;
    justify-content: flex-end; /* Alinear a la derecha */
    padding: 10px;
    margin-bottom: 20px;
}
nav button {
    background-color: #ad4a92; /* Botones lilas */
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #000000; /* Borde negro */
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    text-align: center;
}
nav button:hover {
    background-color: #9c4284; /* Color al pasar el cursor */
}
