:root{
--color-primary: rgb(112, 250, 218);
--color-secondary: rgb(54,141,158);
--ocker: rgb(219,199,44);
}

@font-face
{
  font-family: "Cheese Sauce";
  font-style: normal;
  font-weight: 100 900;		
  font-display: swap;
  src: url("../fonts/Cheese\ Sauce.ttf") format("truetype");
}

.hero_heading{
  font-family: "Cheese Sauce";
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero_subheading {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #2d3748;
}

.hero_text{
  height: 100%;
  color: black;
  display: block;
  text-align: center;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image:  linear-gradient(rgba(191, 253, 242, 0.5), rgb(54,141,158, 0.5)) ,url("../pictures/Ilse_Header.jpg");
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat; 
}

.hero_button
{
  color: rgb(59, 59, 59);
  font-weight: 700;
  padding-top: .75rem;
  padding-bottom: .75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: rgba(54,141,158,1);
  border-radius: 9999px;
  text-decoration: inherit;
  border-width: 0;
  border-style: solid;
  border-color: var(--color-secondary);
}

.hero_button:hover{
  transition: all 0.3s ease;
  background-color: var(--color-primary);
}

/* Media Queries für responsive Schriftgrößen */
@media (max-width: 1024px) {
  .hero_heading {
    font-size: 4rem;
  }
  
  .hero_subheading {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .hero_heading {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero_subheading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero_text {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media (max-width: 640px) {
  .hero_heading {
    font-size: 2.5rem;
  }
  
  .hero_subheading {
    font-size: 1.1rem;
  }
  
  .hero_text {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .hero_button {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero_heading {
    font-size: 2rem;
  }
  
  .hero_subheading {
    font-size: 1rem;
  }
  
  .hero_text {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}