.fondo {
    background-image: url('Fuentes/fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    min-height: 100vh;
}

.sidebar-iconos {
    position: fixed;
    left: 20px;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}
.icono-app {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icono-app p {
    margin: 4px 0 0;
}

.centrado {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px;

}

.barra-superior{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.25);
    color: #fff;
    justify-content: center;
    z-index: 1;
}

.barra-superior p {
    margin: 0;
    padding: 4px 0;
}

.boton-cerrar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ff5f57;
    cursor: pointer;
    position: absolute;
    right: 6px;
    z-index: 2;
}

.ventana {
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid;
    display: flex;
    flex-direction: column;
    width: fit-content;
    border-radius: 16px;
    background-color: rgba(94, 255, 79, 0.49);
    top: 50%;
    padding: 14px;
}

.ventana-boton {
    top: 20%;
    padding: 4px 12px;
}

.ventana-principal {
    top: 50%;
    padding: 14px;
}

.ventana-principal h1,
.ventana-principal h2 {
    margin: 4px;
}

.cabecera-ventana {
    height: 32px;
    width: 100%;
    cursor: move;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.puntero {
    cursor: pointer;
}

.oculta {
    display: none;
}
