body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4ff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background-color: #001f3f;*/
    background-color: yellow;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    color: black;
    font-size: 50px;
    font-weight: bold;
}

.icons a {
    color: white;
    margin-left: 15px;
    font-size: 40px;
    text-decoration: none;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    margin-top:5px;
    width: 100%;
    height: auto;
}

.hero .overlay {
    position: absolute;
    color:#2E8B57;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero h1 {
    font-size: 70px;
    margin: 0;
}

.hero p {
    font-size: 30px;
    font-weight: bold;
}

.navbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    text-align: center;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 40px;
}
