/* FONTS */

@font-face {
  font-family: 'Courier Prime';
  src: url('../fonts/Courier Prime.ttf') format('truetype');
}

@font-face {
  font-family: 'dilemma-sans-bold';
  src: url('../fonts/dilemma-sans-bold.otf') format('opentype');
}

@font-face {
  font-family: 'dilemma';
  src: url('../fonts/Dilemma-SansExtraLight.otf') format('opentype');
}

@font-face {
  font-family: 'dilemmam';
  src: url('../fonts/Dilemma-SansMedium.otf') format('opentype');
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'dilemma-sans-bold';
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #8ab83f 0%, #9fc460 80%, #f4f1de 100%);
}

.logo {
  width: 150px;   /* adjust size if needed */
  height: auto;
  margin-bottom: 30px;
}

/* Card */
.container {
  background: #f1f3f4;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
   max-width: 1080px;
    min-height: 68vh;
  width: 70%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Sub text */
.container h2 {
  font-size: 45px;
  margin-bottom: 15px;
}

.container p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Highlight */
.highlight {
  background: #ffeb3b;
  padding: 3px 8px;
  font-weight: bold;
}

/* Buttons */
.buttons {
  margin-top: 25px;
}

button {
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  margin: 5px;
  transition: 0.3s;
  color: #fff;
}

/* Yes Button */
.yes-btn {
 background: #212c1c;
  font-weight: bold;
}

.yes-btn:hover {
  background: #d8a929;
}

/* No Button */
.no-btn {
  background: #d8a929;
}

.no-btn:hover {
  background: #212c1c;
}

/* Footer text */
.small-text {
  margin-top: 20px;
  font-size: 12px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .container h1 {
    font-size: 45px;
  }

  .container h2 {
    font-size: 22px;
  }

  .container p {
    font-size: 16px;
  }

  button {
    width: 100%;
    margin: 8px 0;
  }
}