﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
 /*background: linear-gradient(135deg, #004aad, #0077c8);*/
   background: linear-gradient(135deg, #e2e2e2, #f1f1f1); 
  color: #222222;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 20px;
}

.container {
height:100%;
	padding:50px 0;
}

.logo img {
  width: 300px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

p {
  font-size: 1em;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.countdown div {
  background: rgba(255, 255, 255, 0.4);
  padding: 15px;
  border-radius: 10px;
  min-width: 70px;
}

.countdown span {
  font-size: 1.8em;
  font-weight: 700;
  display: block;
}

.countdown p {
  font-size: 0.8em;
}

.notify input {
  padding: 10px;
  border: none;
  border-radius: 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
}

.notify button {
  background-color: #00c3ff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.notify button:hover {
  background-color: #009cd6;
}

footer {
  margin-top: 30px;
  font-size: 0.8em;
  opacity: 0.8;
}
