body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #C0C0C0;
  }
  
  #temporizador {
    margin-top: 50px;
    background-color: #C0C0C0;
    background-image: url(img/fondo1.png);
    background-size:contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    animation: fade-in 1s ease-in-out;
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  h1 {
    font-size: 36px;
    color: #333333;
    margin-bottom: 20px;
  }
  
  #contador {
    font-size: 48px;
    margin-top: 20px;
    color: #555555;
    animation: bounce 1s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  /* Estilos adicionales para los dígitos del contador */
  #contador span {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: #ffffff;
    color: #333333;
    font-size: 36px;
    margin: 0px 10px;
    border-radius: 50%;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Estilos para las imágenes de boda */
  #imagenes {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
  
  .imagen-boda {
    width: 250px;
    height: 300px;
    margin: 0 20px;
    animation: zoom-in 1s;
  }
  
  @keyframes zoom-in {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Estilos para los botones */
  #botones {
    margin-top: 20px;
  }
  
  .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333333;
    color: #ffffff;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    margin: 0px 10px;
  }
  
  .button:hover {
    background-color: #555555;
  }
  
  #mandala {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #ad6f6f;
    animation: rotate 30s infinite linear;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .heart {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background-color: #ff3366;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  }
  
  .heart:before,
  .heart:after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #ff3366;
  }
  
  .heart:before {
    left: -100px;
  }
  
  .heart:after {
    left: 100px;
  }