.header {
  background-image: linear-gradient(180deg, #7d009d 24%, #63007f 65%);
}

body {
  background-color: #a40a02;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to top, #04ab5b 50%, #01bf62 51%);
  color: black !important;
  border: none !important;
  font-size: 1.5rem;
  gap: 10px;
  border-radius: 0.5em;
  line-height: 1;
  padding: 0.5em 1.5em;
  text-decoration: none;
  box-shadow: 0 -4px rgba(0, 0, 0, 0.05) inset;
  width: 90%;
  text-align: center;
  font-weight: bold;
}

.button:hover {
  background-image: linear-gradient(to top, #01bf62 50%, #04ab5b 51%);
  box-shadow: 0 4px rgba(0, 0, 0, 0.05) inset;
}

.button-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to top, #dadada 50%, #e0e0e0 51%);
  color: black !important;
  border: none !important;
  font-size: 1.5rem;
  gap: 10px;
  border-radius: 0.5em;
  line-height: 1;
  padding: 0.5em 1.5em;
  text-decoration: none;
  box-shadow: 0 -4px rgba(0, 0, 0, 0.05) inset;
  width: 90%;
  text-align: center;
  font-weight: bold;
}

.button-sec:hover {
  background-image: linear-gradient(to top, #e0e0e0 50%, #dadada 51%);
  box-shadow: 0 4px rgba(0, 0, 0, 0.05) inset;
}

.button-sec img,
.button img {
  width: 35px;
}

.headline {
  margin-top: 2rem;
  font-size: 2.5rem;
  max-width: 900px;
  font-weight: bolder;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: #810505;
  padding: 8px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  margin-right: 16px;
  color: #fcf9f9;
  font-size: 12px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .headline {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .subheadline {
    font-size: 0.8rem;
  }
}
