body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.top-bar {
    background-color: #333333;
    padding: 10px;
    color: #ffffff;
    text-align: center;
}

.top-bar img {
    width: 200px;
    height: auto;
    border-radius: 00%;
    margin-bottom: 10px;
}

h1 {
    margin-top: 20px;
    color: #333333;
    text-align: center;
}

.menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.menu-item {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.menu-item a {
    display: block;
    padding: 10px;
    background-color: #dddddd;
    color: #333333;
    text-decoration: none;
    border-radius: 5px;
}

.menu-item:hover {
    background-color: #aaaaaa;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.menu-item:hover .submenu {
    display: block;
}

.submenu-item {
    margin-bottom: 5px;
}

.submenu-item a {
    display: block;
    padding: 5px;
    color: #333333;
    text-decoration: none;
}

.submenu-item:hover {
    background-color: #eeeeee;
}

.bio-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bio-image {
    flex: 0 0 200px;
    margin-right: 20px;
}

.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.bio-content {
    flex: 1;
}

.bio-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.bio-description {
    font-size: 18px;
    line-height: 1.5;
    color: #2e2e2e;
}

.oxs img {
    width: -10%;
    height: auto;
}


/* Estilos para el menú */

ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    display: flex;
    justify-content: center;
    display: inline-block;
    padding: 10px;
    background-color: #000000;
    cursor: pointer;
}


/* Estilos para la imagen agrandada */

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    transition: transform 0.3s;
}

.image-container:hover img {
    transform: scale(1.2);
}