body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #74b9ff, #a29bfe);
    flex-direction: column;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.full{
    width:95%;
}

h1 {
    margin-bottom: 20px;
    color: #2d3436;
}

label, input, select, button {
    display: block;
    margin: 10px auto;
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
}

input, select {
    border: 1px solid #dfe6e9;
}

button {
    background: #0984e3;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #74b9ff;
}

#countdownDisplay {
    margin-top: 20px;
    font-size: 2.5em;
    color: #2d3436;
}

.impressum-link{
    font-size: 8pt;
    color:white;
    text-align: center;
    margin-top:10px;
}