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

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



.Logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.Logo img {
    height: 100px; /* Verkleinerte Logo-Größe */
    width: auto;
}

.Logo-text {
    font-family: "Cheese Sauce", cursive;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-secondary);
    margin-left: 10px;
}

@media (max-width: 768px) {
    .Logo img {
        height: 40px; /* Noch kleiner auf Mobilgeräten */
    }
    
    .Logo-text {
        font-size: 1.4rem;
    }
}

.container{
 width: 100%;
}

.heading{
  font-family: "Cheese Sauce";
  font-weight: bold;
  font-size: 3rem;
  color: var(--color-primary);
  text-shadow: 2px 2px 2px gray;
}

.head{
  font-family: sans-serif;
  color: rgb(0, 0, 0);
  font-weight: 800;
  background-color: gray;
}
.head-navigation{
  background-color: white;
  top: 0;
  z-index: 100;
}

.head-navigation_container{
  color: rgb(0, 0, 0);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.head-navigation_menu:hover{
  color: var(--color-secondary);
  transition: inherit;
}

