* {
      box-sizing: border-box;
      font-family: "DM Sans", sans-serif;
    }

    body {
      margin: 0;
      min-height: 100vh;
      display: grid;
      grid-template-rows: auto 1fr auto;
      background-color: #91d6f3;
    }

    .header {
      font-size: 2rem;
      font-weight: 500;
      padding: 30px;
    }

    .pill {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }

    .container {
      height: 300px;
      width: 300px;
      background-color: black;
      border-radius: 20%;
      color: white;

      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;

      white-space: pre-line;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      line-height: 2.4rem;
    }
    .line {
      font-size: 2.3rem;
    }

    .line.primary {
      color: white;
    }

    .line.secondary {
      color: rgba(255, 255, 255, 0.6);
    }

    .muted {
      color: rgba(255, 255, 255, 0.6);
    }

    .icon-rain {
      width: 24px;
      height: 24px;
      color: white;
      flex-shrink: 0;
    }

    .line.secondary {
      display: flex;
      align-items: center;
      gap: 10px;
    }