/* Estilos para los botones circulares +/- */
@font-face {
  font-family: 'Seagram';
  src: url('../fuentes/Seagram tfb.ttf') format('truetype');
}

.navigation-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    font-family: 'Seagram';
}

.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-button:hover {
    background-color: #333;
}
