@charset "utf-8";
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: cadetblue; 
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 15px; 
}

.navbar ul li a {
    text-decoration: none; 
    color: white; 
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s;
}

.navbar ul li a:hover {
    background-color:cadetblue; 
    border-radius: 5px;
}

.logo {
	border-radius: 10px;
}
.main {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    
    text-align: center;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: cadetblue; /* Color de fondo */
    color: white; /* Color del texto */
    text-align: center; /* Centra el texto */
    padding: 10px 0;
}
