* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    flex-direction: column;
  }
  
  .container {
    width: 100vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #timerButton {
    width: 80vw;
    height: 80vw;
    /*max-width: 300px;
    max-height: 300px;*/
    border-radius: 50%;
    background-color: #00215f;
    border: none;
    color: white;
    font-size: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    cursor: pointer;
  }
  
  .controls {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacio entre botones */
  }
  
  .controls button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24vw; /* El ancho y el alto son relativos al ancho de la ventana */
    height: 24vw; /* El botón es un círculo, por lo que ancho y alto son iguales */
    border: none;
    background-color: #333;
    border-radius: 50%; /* Hace que el botón sea redondo */
    cursor: pointer;
  }
  
  .controls button svg {
    width: 50%; /* El tamaño del icono será siempre proporcional al tamaño del botón */
    height: 50%; /* Asegúrate de que se mantenga cuadrado */
  }

  .controls button img { /* Para imágenes o SVG incrustados */
    font-size: 8vw; /* El tamaño del icono se ajusta en relación al ancho de la ventana */
    color: white; /* Cambia el color del icono o texto */
  }
  /* Modal de opciones */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  
  .modal input {
    margin: 10px 0;
    padding: 5px;
    font-size: 1.2em;
  }
  