body {
  font-family: 'Murecho', sans-serif !important;
  font-size: 16px;
  color: var(--text-color);
  width: 100%;
}

a {color: var(--primary-color);}
a:hover {color: var(--primary-color-light);}

.content-container {
  margin: 0 auto;
  max-width: 1280px;
}

.drop-some-shadow {
  box-shadow:  0px 0px 10px rgba(0,0,0,0.5);
  width: 100%;
}

.display1, .display1 span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 600;
  color: var(--primary-color);
}

.display2, .display2p, .display2n {
  font-size: 3rem;
  display: inline-block;
  font-weight: 600;
}

.display2p {
  color: var(--positive-color);
}

.display2n {
  color: var(--negative-color);
}

h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 1rem 0;
}

.header {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.header .banana {
  height: 90px;
  padding-right: 1rem;
}

.coming-soon {
  position: fixed;
  bottom: 4rem;
  right: 0px;
  rotate: -25deg;
  font-family: 'PermanentMarker';
  color: var(--negative-color);
  font-size: 3.7rem;
}

.flex-col-center {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-row-wrap {
  display: flex;
  flex-wrap: wrap;
  text-align: start;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.home-screenshots {
  display: flex;
  flex-wrap: nowrap;
  text-align: start;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  gap: 1.2rem;
}

.home-screenshots-cell {
  flex: 1 1 0px;
  text-align: center;
}

.home-screenshots-glide {
  display: none;
}

.home-screenshots-cell img {
  max-width: 100%;
}

.flex-gap-1-0 {
 gap: 0 1.2rem; 
}

.subtitle {
  padding: 3rem 0 2rem 0;
}

.sub-subtitle {
  padding: 1rem 0 2rem 0;
}

.subtitle-crossed-out {
  text-decoration-line:
  line-through;
  text-decoration-color: var(--negative-color);
  position: relative;
}

.subtitle-correction {
  position: absolute;
  top: -3.6rem;
  left: 2.4rem;
  rotate: -10deg;
  font-family: 'PermanentMarker';
  color: var(--negative-color);
  font-size: 3.7rem;
}

.footer {
  padding: 2rem 0 8rem 0;
  display: flex;
  flex-wrap: nowrap;
  text-align: start;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

@media screen and (max-width: 1280px) {
  .content-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  
}

@media screen and (max-width: 600px) {
  .content-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-screenshots {
    display: none;
  }

  .home-screenshots-glide {
    display: block;
  }

  .coming-soon {
    position: fixed;
    bottom: 2.5rem;
    right: 0px;
    rotate: -25deg;
    font-family: 'PermanentMarker';
    color: var(--negative-color);
    font-size: 2.2rem;
  }
}

@media print {
	
}