body {
      margin: 0;
      padding: 0;
      background-color: #1e1e1e;
      color: #ffffff;
      font-family: Arial, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .container {
      width: 90%;
      max-width: 700px;
      margin-top: 50px;
      padding: 20px;
      box-sizing: border-box;

    }

    .title {
      font-size: 1.8rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 20px;
    }

    .event {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
      word-wrap: break-word;
      text-align: center;
      z-index: 0;
    }

    .event-title {
      margin-bottom: 10px;
    }

    .event-timer {
      font-weight: bold;
    }

