
.raleway {
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
       body {
            margin: 0;
            font-family: "Raleway", sans-serif;
            color: #ffffff;
            background: rgb(122,11,153);
            background: radial-gradient(farthest-corner at 40px 40px, rgba(122,11,153,1) 0%, rgba(114,58,231,1) 33%, rgba(134,147,255,1) 66%, rgb(152, 191, 240) 99%);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;

        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 10px #ff8cfc;
        }

        p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 8px #c68fff;
        }

        .timer {
            display: flex;
            justify-content: center;
            gap: 1rem;
            font-size: 2rem;
            font-weight: bold;
        }

        .timer div {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 5px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }

        .footer {
            position: absolute;
            bottom: 1rem;
            font-size: 0.9rem;
            color: #000000;
            text-shadow: 1px 1px 5px #6000af;
        }
