body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
nav {
    background-color: #333;
    position: relative;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    padding: 15px;
}

nav li a {
    color: #fff;
    text-decoration: none;
}

nav li a:hover {
    color: #ffcc00;
}

/* Hauptinhalt Styles */
.hero-section {
    text-align: center;
    background-color: #ffcc00;
    padding: 100px;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 24px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #555;
}
.input {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input input[type="password"] {
    padding: 10px;
    border: 2px solid #333;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 250px;
    }

.input input[type="password"]:focus {
    border-color: #ffcc00;
}

.input input{
    text-align: center;
}

#navbarButton{
    position: absolute;
    right: 15px;
    height: 100%;
}