:root {
  --background: #c5e2ce;
  --bodybackground: #ecf5ef;
  --lettersbackground: #061009;
  --header: #13301c;
  --hover: 	#9fcfae;
  --active: #0c2013;
  --lettersactive: #ecf5ef;
  --odd:#d8ecdf;
  --even:#b2d9be;
}

/* section{
  height: 90vh;
  height: calc(100vh -70px);
  height: calc((var(--vh, 1vh) * 100) - 70px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;

} */

section{
  height: 90vh;
  height: calc(100vh -70px);
  height: calc((var(--vh, 1vh) * 100) - 70px);
  width: 100%;
 display: flex;
 align-items: flex-start;
 align-items: center;
 flex-direction: column;
 font-size: 1.2rem;
}

.top-part{
  display: flex;
    flex-direction: column;
  align-items: center;
}

.bottom-part{
  /* margin-top: 50px; */
  display: grid;
  grid-template-columns: 1fr 1fr;
}





h1 {
  margin-top: 0.2rem;
  padding: 0.5rem 1.5rem;
  
  

  border-radius: 2rem;
font-size: 4.8rem;
background-color: var(--header);
color: var(--lettersactive);
}

h2{
  font-size: 3.6rem;
}


.informationtext{
max-width: 50rem;
font-size: 1.6rem;
text-align: center ;
}
.mountainPics{
display: flex;
align-items: center;
}
.mountainPic {
  width: 20rem;
  margin: 0 0.4rem;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  
}

.gehort-dir{
  margin: 1rem 0;
  padding: 1rem;
  font-size: 1.2rem;
  border-radius: 1rem;
  font-weight: bold;
  background-color: var(--background);
  color: var(--lettersbackground);
}



table {
margin:  0 1rem;
  /* margin-top: 50px; */
  max-width: 900px;

  border-collapse: collapse ;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
 }

thead {
  background-color: #3e9f5d;
}

th,
td {
  padding: 16px 24px;
  text-align: left;

}

thead tr th {
  /* width: 65%; */
  background-color: var(--active);
  color: var(--lettersactive);
  font-size: 1.4rem;

}


tr {
  height: 30px;
 
}

tbody tr:nth-child(odd) {
  background-color: var(--odd);
}
tbody tr:nth-child(even) {
  background-color: var(--even);
}



.informations{
  margin: 0 1rem;
  border: 1rem solid var(--even);
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;

}

ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bottomlink{
  text-decoration: none;

  margin-top: 1.5rem;
  padding: 0.8rem;
  font-weight: bold;
  background-color: var(--even);
  border-radius: 1rem;
}

@media (max-width:50rem){
  .bottom-part{
  
  
    grid-template-columns: 1fr; 
  }
  
  table {
    margin:  2rem 1rem;
      /* margin-top: 50px; */
      max-width: 900px;
    
      border-collapse: collapse ;
    
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
     }


  
  }