body {
    margin: 0;
    padding: 0;
    background-image: url('image/back.jpg');
    background-size: cover;
    background-position: center;
    font-family: 'Tajawal', sans-serif;
    color: white;
  }
  
  .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
  }
  
  .relogio {
    width: 400px;
    height: 400px;
  }
  
  .tagline {
    margin-top: 30px;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  }
  
  /* تنسيقات خاصة للموبايل */
  @media (max-width: 768px) {
    .relogio {
      width: 300px;
      height: 300px;
    }
  
    .tagline {
      font-size: 24px;
    }
  }
  
  @media (max-width: 480px) {
    .relogio {
      width: 250px;
      height: 250px;
    }
  
    .tagline {
      font-size: 40px;
    }
  }