body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    height: 100vh;
}

.container {
    margin-top: 100px; /* Space below the header */
    position: relative; /* Ensures it appears above the overlay */
    z-index: 20;
    max-width: 600px;
    width: 100%;
    background: #4682b4; /* Steel blue */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white; /* White text */
}

@media (max-width: 600px) {
    .container {
        margin-top: 8vh; /* More space on smaller screens */
    }
}


header {
    background-color: #1d3c5f;
    padding: 50px 0; /* reduce from 80px unless you want it huge */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    color: white;
    display: flex;
    align-items: center;        /* vertical centering */
    justify-content: center;    /* horizontal centering */
}

.header-icons {
    position: absolute;
    right: 30px;
    display: flex;
    gap: 20px;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

.site-name {
    font-size: 35px;
    font-weight: bold;
}

.logo-container {
    display: flex;
    align-items: left;  /*keeps logo + text aligned nicely */
}


.logo {
    height: 50px;
    margin-right: 10px;  /*Abstand zwischen Logo und Name*/ 
}



.headline1 {
     
    margin-top: 100;
    padding-top: 200px; /* Optionaler Innenabstand */
    
      
}

.headline2 {
    margin-top: 100px;
}

button {
    background-color: #5a9bd4; /* Hellblau */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #4a87c7; /* Dunkleres Blau */
}

/* Created by _4n0nV11 */