(C) 2020-2025 krallheim.net Network Team

{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f9;
    font-family: 'Arial', sans-serif;
}

header {
    width: 100%;
    padding: 5px 0;
    background-color: #2c3e50;
    text-align: center;
    position: relative;
}
<style>
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150vh; /* Höhe:Bildschirmhöhe */
    background: #f9f9f9; /* optionaler Hintergrund */
  }

  .logo {
    width: 500px;  /* Größe */
    max-width: 80%; /* Mobil Handy-Größe */
    height: auto;
  }
</style>

.logo {
    height: 50px;
}

.content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
}

.button {
    background-color: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #2980b9;
}

ul {
    list-style-type: disc;
    margin-left: 200px;
	font-size: 30px;
    padding-left: 0;
}

ul li {
    margin-bottom: 4px;
}