* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.hover-option {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

/* Posicionamiento aproximado de las opciones en la imagen */
.option1 { top: 30%; left: 20%; }
.option2 { top: 45%; left: 20%; }
.option3 { top: 60%; left: 20%; }
.option4 { top: 75%; left: 20%; }

.tooltip {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1;
}

/* Posiciones para mostrar los tooltips */
.tooltip1 { top: 30%; left: 30%; }
.tooltip2 { top: 45%; left: 30%; }
.tooltip3 { top: 60%; left: 30%; }
.tooltip4 { top: 75%; left: 30%; }

/* Mostrar el tooltip cuando se pasa el mouse */
.hover-option:hover + .tooltip {
    display: block;
}
