body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

header, footer {
  display: flex;
  justify-content: space-between;
  background: #fff;
  color: #004b7c;
  padding: 10px 20px;
  align-items: center;
}

header {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 15px 15px;
}

footer {
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}

header div{
display: flex;
align-items: center;
}

header div img{
width: 50px;
height: 50px;
}

header div a{
 text-decoration:none;
 }

/* .main {
  padding: 0px;
} */

.layout-container{
display: flex;
flex-direction: column;
 min-height: 100vh;
}

.home-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
}

.home-container h2{
  margin: 0 20px;
  text-align: right;
}

h1{
  color: #ee7f00;
  }

  nav{
  display: flex;
  align-items: center;
  padding: 0 40px;
  }


.nav-link {
  position: relative;
  display: inline-block;
  color: #004b7c;
  margin-right: 15px;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #004b7c;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 550px;
  height: 400px;
  padding: 20px;
  background-color: #fff;
  border: 2px solid #004b7c;
  border-radius: 10px;
  color: #004b7c;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-main:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-main img {
margin-top: 20px;
  margin-bottom: 15px;
  width: 100px;
  height: 100px;
  color: #ee7f00;
}

.btn-main h2 {
  margin: 25px 0 10px;
  font-size: 1.4rem;
}

.btn-main p {
  font-size: 1rem;
  color: #444;
  margin-top: 15px;
  text-align: left;
}

section {
  margin-bottom: 20px;
}

.impressum-container{
  padding: 20px;
  max-width: 800px; 
  margin: 0 auto;
}