* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: skyblue;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.logo img {
    height: 30px; /* Ajusta el tamaño del logo */
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.active {
    font-weight: bold;
    text-decoration: underline;
}

.image-container { 
    width: 100%;
height: auto;

}


.imagen-logo1{
    max-width: 100%;
    height: auto;
    width: 100%;
}

.imagen-logo{
    width: 300px;
    height: 200px; 
    object-fit: cover;
    margin-right: 20px;

}
h1{
    color: red ;
}


