body {
  background: #000;
}
h1 {
  font-family: "Fleur De Leah", serif;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
  font-size: 12rem;
  text-align: center;
  margin: 25px;
}
h2 {
  font-family: "Ephesis", serif;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
  font-size: 4rem;
  text-align: center
}
h3 {
	font-family: "Ephesis", serif;
}
.parallax {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: white;
}
@media (max-width: 1020px) {
  h1 {
    font-size: 8rem; /* Pienempi fonttikoko mobiililaitteille */
  }
  h2 {
    font-size: 3rem; /* Pienempi fonttikoko mobiililaitteille */
  }
}
@media (min-width: 769px) {
  .parallax {
    background-image: url('images/hero-landscape.jpg');
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  .parallax {
    background-image: url('images/hero.jpg');
    background-attachment: scroll;
  }
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 1.7rem;
  }
}
.image-container {
  position: relative;
  width: 100%;
  padding-top: 150%; /* Kuvasuhde: 350 / 525 = 2:3 */
  overflow: hidden;
}
.fade-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Säilyttää kuvasuhteen ja täyttää alueen */
  transition: opacity 1s ease-in-out;
  opacity: 0;
}
.fade-image.visible {
  opacity: 1;
}
.alert-success {
  background-color: #051b11;
  opacity: .7;
  color: #75b798;
  border: none;
}
.alert-info {
  opacity: .7;
}

.accordion-button {
	text-transform: uppercase;
	font-family: "Ephesis", serif;
}
.alert-info, .accordion-button:not(collapsed) {
  background: #032830 !important;
  color: #6edff6 !important;
}
.alert-extra {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  border: none;
}
button {
  margin: auto;
}

/* Muuttaa nuolen värin */
.accordion-button::after {
  color: #FFF !important; 
	fill: #FFF
}

/* Muuttaa nuolen värin aktiivisessa tilassa */
.accordion-button:not(.collapsed)::after {
  color: #FFF !important; 
}

:root {
  --bs-accordion-btn-icon-color: #fff; /* Oletustilan väri */
  --bs-accordion-btn-active-icon-color: #fff; /* Aktiivisen tilan väri */
}

