:root {
  --background: #c5e2ce;
  --bodybackground: #ecf5ef;
  --lettersbackground: #061009;
  --hover: 	#9fcfae;
  --active: #0c2013;
  --lettersactive: #ecf5ef;
  --odd:#d8ecdf;
  --even:#b2d9be;
}

h2{
  margin-top: 2rem;
  font-size: 3.6rem;
}

h3{
  font-size: 1.6rem;
  margin-top: 1rem;
}

h4{
    font-size: 1.4rem;
    margin-top: 1rem;
}

a{
  color: inherit;
}

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;
 overflow-y: scroll;

}
table {

  margin-top: 50px;
  max-width: 900px;
  border-collapse: collapse;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
 }

 .gipfelbuch{
  max-width: 500px;
 }

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: 60px;
  font-size: 1.2rem;
}

tbody tr:nth-child(odd) {
  background-color: var(--odd);
}
tbody tr:nth-child(even) {
  background-color: var(--even);
}


.date-content{
  margin: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.day-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;


}

.photo-card {
  width: 36rem;
  height: 54rem;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background-color: #2b6f41;
  color: var(--lettersactive);
  box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.2);
}



.mountain-card {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.9;
  transition: opacity .2s ease-out;
}





.weather-card-station{
  text-align: center;
}

.weather-card-titel{
  text-align: center;
}
.weather-card-data{
  text-align: center;
}

.titel-card{
  text-align: center;
  text-transform: uppercase;
}

.name-card {
  position: absolute;
  inset: auto auto 6rem 3rem;
  margin: 0;
  transition: inset .3s .3s ease-out;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  background-color: rgb(6, 16, 9, 0.8);
  padding: 0.2rem;
  
}

.gipfel-card {
  position: absolute;
  inset: auto auto 4.5rem 3rem;
  margin: 0;
  transition: inset .3s .3s ease-out;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  background-color: rgb(6, 16, 9, 0.8);
  padding: 0.2rem;
}
.height-card {
  position: absolute;
  inset: auto auto 3rem 3rem;
  margin: 0;
  transition: inset .3s .3s ease-out;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  background-color: rgb(6, 16, 9, 0.8);
  padding: 0.2rem;
}



.text-card {
  position: absolute;
  opacity: 0;
  max-width: 80%;
  transition: opacity .3s ease-out;
  font-size: 1.6rem;
  background-color: rgb(6, 16, 9, 0.8);
  padding: 0.2rem;
}

.text-card {
  inset: auto auto 80px 30px;
}


.photo-card:hover .name-card {
  inset: auto auto 22rem 3rem;
  transition: inset .3s ease-out;
}
.photo-card:hover .gipfel-card {
  inset: auto auto 20.5rem 3rem;
  transition: inset .3s ease-out;
}
.photo-card:hover .height-card {
  inset: auto auto 19rem 3rem;
  transition: inset .3s ease-out;
}

.photo-card:hover .text-card, .photo-card:hover {
  opacity: 1;
  transition: opacity .5s .1s ease-in;
}

.photo-card:hover img {
  transition: opacity .3s ease-in;
  opacity: 1;
}
.koenig{
  height: 3rem;
  width: 3.6rem;
  left: 1.5rem;
  top: 1.5rem;
  position: absolute;

}