* {
  transform-style: preserve-3d;
}

a {
  color: #F2B55D;
}

html, body {
  font-size: 19px;
  height: 100%;
  font-family: Verdana;
  overflow: hidden;
  margin: 0px;
  background: #130006;
}

#parallax {
  --perspective: 100;
  --perspectivepx: calc(var(--perspective) * 1px);
  perspective: var(--perspectivepx);
  height: 100vh;
  perspective-origin: center 30%;
  overflow-x: hidden;
  overflow-y: auto;
}

.drop-red {
  filter: drop-shadow(3px 3px 0px rgb(223, 93, 64));
}

.drop-orange {
  filter: drop-shadow(2px 2px 0px #F2B55D);
}

header #header-text {
  display: flex;
  width: 100%;
  top: -150px;
  color: white;
  position: absolute;
  align-items: center;
  flex-direction: column;
}
header #header-text h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
header #header-text span {
  font-weight: 500;
  font-size: 1.3rem;
}
header #mountain-svg-container {
  --proportion: calc(426.13 / 1326.95);
  width: 100vw;
  margin-top: 200px;
  transform: scale(1.04);
  transform-origin: center 98%;
  height: calc(100vw * var(--proportion));
  min-height: 100%;
}
header #mountain-svg-container svg {
  overflow: visible;
  width: 100%;
  height: 100%;
  position: absolute;
  --scale: calc(var(--perspective) / calc(var(--perspective) + var(--z)));
  --zpx: calc(var(--z) * 1px);
  transform: scale(var(--scale)) translateZ(var(--zpx));
  transform-origin: center;
}
header #mountain-svg-container #sun {
  --z: -60;
}
header #mountain-svg-container #back_mountains {
  --z: -45;
}
header #mountain-svg-container #_6th_tall_mountains_and_clouds {
  --z: -37;
}
header #mountain-svg-container #_5th_mountain_with_a_tree {
  --z: -29;
}
header #mountain-svg-container #_4th_mountain_and_some_trees {
  --z: -21;
}
header #mountain-svg-container #_3rd_mountain_and_some_clouds {
  --z: -9;
}
header #mountain-svg-container #_2nd_mountain_with_trees {
  --z: -5;
}
header #mountain-svg-container #top {
  --z: 0;
}

main {
  display: flex;
  justify-content: center;
  color: white;
  padding: 1rem;
  background: #130006;
}
main container {
  max-width: 953px;
}
main.reverse {
  background: white;
  color: black;
}
main h2 {
  margin: 0px;
  text-align: center;
  font-size: 1.5rem;
  filter: drop-shadow(2px 2px 0px rgb(223, 93, 64));
}

.bubble-list {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 0.5rem;
  padding: 0px;
  color: white;
}
.bubble-list li {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding-right: 0.5rem;
  border: 2px solid;
}
.bubble-list li svg {
  width: 1rem;
  margin: 0.5rem;
}

#about {
  display: flex;
  flex-direction: row;
}
#about #pic {
  height: auto;
  width: 100%;
  padding: 2rem;
}
#about #pic img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid rgb(223, 93, 64);
}

#image-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#image-list img {
  height: 3rem;
}
#image-list img.viessman {
  height: 2rem;
}
#image-list img.technical {
  height: 6rem;
}

hr {
  margin: 2rem 0px;
  opacity: 0%;
}

footer {
  padding-bottom: 10rem;
}/*# sourceMappingURL=styles.css.map */