body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    background-color: antiquewhite;

}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.downloads {
    text-decoration: none;
    width: 100%;
    z-index: 100;
}



button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%;
}

button:hover {
    background-color: #45a049;
}



@media (min-width: 600px) {
    button {
        font-size: 1.1em;
    }
}

@media (min-width: 768px) {
    button {
        font-size: 1.2em;
    }
}


.back-button {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none; /* Entfernt die Unterstreichung des Links */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background-color: #0056b3;
}