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

body {
    overflow-x: hidden; 
    font-family: sans-serif;
    padding-top: 80px; 
}

img {
    border-radius: 15%;
    display: block;
    margin: 0 auto; /
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}


footer {
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    display: flex;
    justify-content: center; 
    gap: 20px; 
    align-items: center; 
    padding: 15px;
}


.inicio, .Historia, .legado {
    background-color: rgba(255, 255, 255, 0.918);
    color: #333;
    display: flex;
    text-align: center;
    width: 90px;
    height: 25px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s; 
    left: 150px;
    top: -410px;
    position: relative;
    justify-items: center;
    justify-content: center;
    text-decoration: none;

}

    .inicio a, .Historia a, .legado a{
        text-decoration: none;
        color: black;
    }

.inicio:hover, .Historia:hover, .legado:hover {
    background-color: rgba(122, 122, 119, 0.692);
}


.button-area {
    display: flex;
    justify-content: center; 
    gap: 20px;
    margin-top: 20px;
}

.button1{
    border-radius: 6px;
    border: 0px;
    height: 60px;
    width: 200px;
    font-size: 17px;
    color: white;
    background-color: #013cffa8;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    left: 600px;
    top: 150px;
}
.button2{
   border-radius: 6px;
    border: 0px;
    height: 60px;
    width: 200px;
    font-size: 17px;
    color: white;
    background-color: #013cffa8;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    left: 900px; 
    top: 150px;
}


.button1:hover, .button2:hover {
    background-color: rgba(112, 112, 111, 0.664); 
    color: #292828; 
}


.info-container {
    display: flex;
    gap: 40px; 
    justify-content: center;
    flex-wrap: wrap; 
    margin-top: 50px;
    padding: 20px;
}

.info, .info2, .info3 {
    border-radius: 12px;
    background-color: rgba(169, 169, 169, 0.664);
    height: 100px;
    width: 350px;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    left: 190px;
    top: 250px;
    position: relative;
}