/* Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding: 0;
    background: #f2f2f2;
    display: block;
    justify-content: center;
    align-items: center;
}

main {
    margin: 5vh auto;
    padding: 2vw;
    background: #ffffff;
    width: 60vw;
    max-height: 96vh;
    overflow: auto;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}

header, section {
    margin-bottom: 2vh;
}

h1, h2 {
    color: #333;
    margin-top: 0;
}

h1 {
    font-size: 3vh; /* Adjust this value as needed */
    border-bottom: 1px solid #333;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

h2 {
    color: #666;
    font-size: 2vh;
    margin-bottom: 1rem;
}

ol {
    color: #333;
    margin-left: 2vw;
}

li {
    margin-bottom: 1vh;
}

/* Responsive styling */
@media screen and (max-width: 768px) {
    main {
        width: 90vw;
    }
}


/* Impressum */

#impressum-container {
    width: 80%;
    margin: 20px auto;
  }
  
  #impressum-title {
    color: #333;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  #tmg-info-title,
  #representative-title,
  #contact-title,
  #registry-title,
  #vat-title {
    color: #17bbb0;
    font-size: 20px;
    margin-top: 20px;
  }
  
  #company-address,
  #representative-name,
  #contact-info,
  #registry-info,
  #vat-info {
    margin-bottom: 10px;
  }
  
  #content-responsibility {
    margin-bottom: 20px;
  }
  
  #impressum-copyright {
    margin-bottom: 3rem;
  }

  /* footer */

footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    width: 100%;
  }
  
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .footer-menu li {
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 20px;
  }
  
  .footer-menu li:last-child {
    margin-right: 0;
  }
  
  .footer-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
  
  .footer-menu a:hover {
    color: #17bbb0;
  }
  
  .footer-text {
    text-align: center;
    margin-bottom: 0px;
    padding: 0;
  }
  
  .footer-disclaimer {
    text-align: center;
    margin-bottom: 30px;
    padding: 2rem;
    font-size: smaller;
  }
  
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .footer-legal li {
    display: inline-block;
    margin-right: 30px;
  }
  
  .footer-legal li:last-child {
    margin-right: 0;
  }
  
  .footer-legal a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  
  .footer-legal a:hover {
    color: #17bbb0;
  }
  
  @media (max-width: 768px) {
    .footer-menu {
    display: flex;
    flex-direction: column;
    text-align: center;
    }
    .footer-menu li {
    margin-right: 0;
    }
    .footer-menu li:not(:last-child) {
    margin-bottom: 10px;
    }
    }
  