/* Reset */
*,
*:after,
*:before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: 'Prompt', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

img {
  width: fit-content;
  max-width: 100%;
  max-height: 100%;
}

/* Typography */
h1 {
  font-size: 1.9em;
  font-weight: 600;
  margin: 10px 0 0 0;
  /* text-transform: uppercase; */
  letter-spacing: -0.5px;
  line-height: 1.2;
}

p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

/* Layout */
.container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Main */
.main {
  text-align: center;
  flex: 1 1 auto;
  padding-top: 0;
}

.main .main-title {
  font-weight: 700;
  font-size: 22px;
  text-shadow: -0.3px 0.3px 1px rgba(0, 0, 0, 0.3);
  color: #333;
  line-height: 1;
  margin: 0 auto 10px;
  text-align: center;
}

.main .sub-title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-align: center;
}

.main .sub-title ul li {
  list-style-type: none;
  text-shadow: -0.2px 0.2px 0.5px rgba(0, 0, 0, 0.2);
}

.main__image {
  width: 70%;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

#date {
  text-transform: uppercase;
}

/* Neumorphic Buttons */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 15px 0 30px 0;
  padding: 0;
}

.btn-yes,
.btn-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 4px 60px;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
}

.btn-yes {
  background: linear-gradient(145deg, #4caf50, #2e7d32);
  color: #fff;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-yes:hover {
  background: linear-gradient(145deg, #66bb6a, #43a047);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25), -6px -6px 12px rgba(255, 255, 255, 0.9);
}

.btn-yes:active {
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2), inset -4px -4px 8px rgba(255, 255, 255, 0.1);
}

.btn-no {
  background: linear-gradient(145deg, #f44336, #c62828);
  color: #fff;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-no:hover {
  background: linear-gradient(145deg, #ef5350, #e53935);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25), -6px -6px 12px rgba(255, 255, 255, 0.9);
}

.btn-no:active {
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2), inset -4px -4px 8px rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
  width: 100%;
  padding: 15px 0;
  background: #2e2e2e;
  color: #fff;
  text-align: center;
  margin-top: 50px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

footer ul li {
  display: inline-block;
  margin: 0 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #ccc;
}

/* Responsive */
@media (min-width: 375px) {
  .main .main-title {
    font-size: 44px;
  }
  .main .sub-title {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .main .sub-title {
    font-size: 24px;
  }
}
