
body {
    font-family: Trebuchet MS;
    line-height: 1.5em;
    overflow-x: hidden;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
 //   background: linear-gradient(180deg, rgba(192,192,192,1) 86%, rgba(0,0,0,1) 86%);
    background: linear-gradient(180deg, rgba(192,192,192,1) 74%, rgba(0,0,0,1) 74%);
}

/* Top */
.big-top-image-container {
    max-width: 100%;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo {
    position: absolute;
    width: 524px;
    max-width: 90%;
}

.background-image {
    position: absolute;
    width: 100vw;
    height: 100vh;
}

.section {
  background: #C0C0C0; 
  height: 100vmin;
  width: 100%;
}

.section::before {
  animation: bounce 0.3s infinite;
  animation-direction: alternate;
  bottom: 2rem;
  color: #FFFFFF;
  content: '\25BD';
  font-size: 3rem;
  height: 4rem;
  left: 50%;
  letter-spacing: -1px;
  line-height: 4rem;
  margin-left: -3rem;
  opacity: 0.65;
  position: absolute;
  text-align: center;
  width: 6rem;
}

@keyframes bounce {
  0% { transform: translateY(0%);}
  100% { transform: translateY(-30%);}
}

/* Splashes */
.splash {
    width: 120vw;
    max-width: 708px;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }

 /* Bottom-kontakt */
.Bottom-kontakt {
    width: 80vw;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }

/* Bottom */
.bottom {
  height: 4vmin;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Text */
.text {
    width: 80vw;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 60px;
}



h1 {
    margin-top: 1.0em;
    margin-bottom: 0.5em;
    font-size: 1.5em;
   /* line-height: 2.5rem; */
}

h2 {
    margin-top: 1.0em;
    margin-bottom: 0.5em;
    font-size: 1.5em;
}

h3 {
    font-weight: bold;
    display:inline;
}

p {
    font-size: 16px;
}

small {
    font-size: 11px;
}


/* Small screen */

@media only screen and (max-width: 390px) {
    small {
        font-size: 0.85em;
    }
    
    p {
        font-size: 0.95em;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }
}


@media only screen and (max-height: 600px) {
    .logo {
       width: auto;
       max-height: 75vh;
    }

    .section::before {
        bottom: 1rem;
        font-size: 1.2rem;
        height: 2.5rem;
    }
}

