

@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');


* {
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}


body {
      font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      background: url("/images/QAR.jpeg") no-repeat center center fixed;
      background-size: cover;
      padding: 20px;
      text-align: center;
      color: #ffffff;
    }

    h1 {
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px #000;
    }

    .grid {
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      max-width: 680px;
      margin: auto;
    }

    .day {
      background-color: rgb(184, 21, 21, 0.5);
      color: white;
      padding: 20px;
      border-radius: 12px;
      cursor: pointer;
      transition: 0.3s;
      font-size: 20px;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 0, 0, 0.5);
      border: 3px solid rgba(255, 255, 255, 0.7);
    }

    .day:hover {
      background: rgba(183, 28, 28, 0.9);
      transform: scale(1.05);
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: #d91031;
      padding: 25px;
      border-radius: 10px;
      max-width: 500px;
      text-align: left;
      animation: pop 0.4s ease-out;
    }

    .modal-content p {
      color: rgb(253, 253, 253) !important;
    }

    .modal-content h2 {
      color: rgb(255, 255, 255) !important;
    }

    .close {
      float: right;
      cursor: pointer;
      font-size: 22px;
    }

    .lights {
      width: 100%;
      text-align: center;
      margin-bottom: 15px;
      font-size: 25px;
      animation: glow 1.2s infinite alternate;
    }

    @keyframes glow {
      0% {
        text-shadow: 0 0 5px yellow;
      }

      100% {
        text-shadow: 0 0 20px orange;
      }
    }

    @keyframes pop {
      0% {
        transform: scale(0.5);
        opacity: 0;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .snowflake {
      position: fixed;
      top: -10px;
      color: #fff;
      user-select: none;
      pointer-events: none;
      animation: fall linear infinite;
      font-size: 20px;
    }

    @keyframes fall {
      0% {
        transform: translateY(-10px);
        opacity: 0.2;
      }

      100% {
        transform: translateY(100vh);
        opacity: 0.1;
      }
    }
    .button {
  background-color: red;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}