/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f0f8ff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background: #1e90ff;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}
nav {
    background: #4682b4;
    color: white;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}
nav a:hover {
    text-decoration: underline;
}
canvas {
    display: block;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #b0c4de;
}
section {
    flex: 1; /* Füllt den verfügbaren Platz aus */
    padding: 20px;
}
h2 {
color: #4682b4;
}
h3 {
color: #1e90ff;
}
.hero {
    background: #e6f2ff;
    padding: 20px;
    text-align: center;
    border: 1px solid #b0c4de;
    margin: 20px 0;
}
.cta-button {
    display: inline-block;
    background: #1e90ff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.cta-button:hover {
    background: #4682b4;
}
img {
 
  height: 50vw;
  display: block;
  margin: 10px auto;
}
footer {
    background: #4682b4;
    color: white;
    text-align: center;
    padding: 10px;
}
#backToTopBtn {
    display: none; /* Erst versteckt */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
#backToTopBtn:hover {
    background-color: #4682b4;
}
