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

body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    padding-top: 100px;
    overflow-x: hidden;
}


footer {
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 15px;
}


.inicio1, .Historia1, .legado1 {
    background-color: rgba(255, 255, 255, 0.918);
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.inicio1:hover, .Historia1:hover, .legado1:hover {
    background-color: rgb(251, 255, 0);
}

.titulo1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.tl1, .tl2, .tl3, .tl4 {
    text-align: center;
    margin-top: 40px;
    font-size: 28px;
    color: #222;
}

.dev1, .dev2, .dev3, .dev4 {
    width: 85%;
    max-width: 800px;
    margin: 20px auto;
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
}


.borda {
    background-color: aqua;
    width: 120px;
    height: 6px;
    margin-top: 10px;
    border-radius: 10px;
}


.img-container {
    display: flex;
    justify-content: center; 
    width: 100%;
    margin: 40px 0;
}

.img1, .img2 {
    border-radius: 15%;
    display: block;
    height: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.img1 {
    max-width: 450px;
    width: 90%;
}

.img2 {
    max-width: 700px; 
    width: 90%;
}