/* Container holding the two columns */
.wt-flex-container {
  display: flex;
  width: 100%;
  background-color: #f4f4f9;
}

/* Individual columns */
.wt-flex-column {
  flex: 1; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem; 
}

/* Styling for the headline */
.wt-headline {
  font-family: sans-serif;
  font-size: 3rem;
  color: #333;
  margin: 0;
  text-align: center;
}

/* Styling for the oversized button */
.wt-oversized-btn {
  font-size: 2rem;
  font-weight: bold;
  padding: 1.5rem 3rem;
  background-color: #d9f2d0;
  color: #060806;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.wt-oversized-btn:hover,
.wt-oversized-btn:active {
  opacity: 0.8;
}

.oversized-btn:hover {
  background-color: #0056b3;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .wt-flex-container {
    flex-direction: column;
  }
}	