/* Styling for CallToActionButton component */
.button {
  width: auto;
  /* max-width: 274.08px; */
  height: 2.75em;
  background-color: #fec91a;
  border: none;
  border-radius: 15px;
  color: #262f40;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 66px;
  padding: 0 1.375rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #e0b017;
}

.button:active {
  background-color: #c99f15;
}

@media (max-width: 320px) {
  .button {
    font-size: 20px;
  }
}

