/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Karla", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f9;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  width: 100%;
  padding: 20px;
 /* background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

.logo {
  width: 150px; /* Adjust the size of the logo as needed */
  height: auto;
  margin-bottom: 20px;
}

.content h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.counter {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.proceed_btn {
  font-family: "Karla", sans-serif;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #7fb036;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.proceed_btn:hover {
  background-color: #669928;
}

.note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content h1 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .proceed_btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 120px;
  }

  .content h1 {
    font-size: 1.2rem;
  }

  .content p {
    font-size: 0.8rem;
  }

  .proceed_btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
