/* reset podstawowy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

/* tło całej strony jako zdjęcie */
body {
    font-family: Arial, sans-serif;
    background: url("eldorado.jpg") no-repeat center center fixed;
    background-size: cover;
}

/* czerwony nagłówek i stopka */
.top-bar,
.bottom-bar {
    width: 100%;
    background-color: #c00000;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

/* aby stopka była na dole przy małej ilości treści */
body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* biały formularz na środku */
.download-form {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    text-align: center;
    min-width: 260px;
}

.download-form h2 {
    margin-bottom: 10px;
}

.download-form p {
    margin-bottom: 20px;
}

/* przycisk "pobierz mnie" */
.download-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #c00000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-button:hover {
    background-color: #a00000;
}
