* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0C3B26;
  color: #f1f1f1;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
}

a {
  text-decoration: underline;
  color: #f2c150;
  transition: color 0.3s ease;
}
a:hover {
  color: #f1f1f1;
}
a:visited {
  color: #f2c150;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Righteous", serif;
  margin-bottom: 1rem;
  color: #f2c150;
}
h1.headline,
h2.headline,
h3.headline,
h4.headline,
h5.headline,
h6.headline {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 1rem;
}

h3 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 1rem;
  text-align: justify;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2rem 0;
  gap: 1rem;
}
.row.info-row {
  justify-content: space-around;
}

.info-card {
  flex: 0 1 25rem;
  max-width: 25rem;
  width: 100%;
  background: #08241A;
  padding: 1.5rem;
  border-radius: 5px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.info-card:hover {
  transform: translateY(-10px);
  background: black;
}
.info-card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #f2c150;
}

@media screen and (max-width: 1200px) {
  .info-card {
    max-width: calc(33% - 1rem);
  }
}
@media screen and (max-width: 1000px) {
  .info-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
footer {
  max-width: 100vw;
  width: 100%;
  background: #03110b;
  color: #f2c150;
  padding: 0.5rem 0;
  text-align: center;
}
footer a {
  color: #f2c150;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #f1f1f1;
}

.content-wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100vw;
  flex: 1;
  max-width: calc(100vw - 10%);
}

.mailing-list-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #08241A;
  padding: 4rem 0;
  border-radius: 5px;
  margin: 2rem 0;
}
.mailing-list-section h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f2c150;
}
.mailing-list-section p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.mailing-list-section a {
  background: #f2c150;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: #0C3B26;
  text-decoration: none;
}
.mailing-list-section a:hover {
  background: #f1f1f1;
  color: #0C3B26;
}

/*# sourceMappingURL=style.css.map */
