/* Ogólne ustawienia */
body {
    margin: 0;
    padding: 0;
    font-family: 'Martel', sans-serif;
    color: white;
    background-color: #543eb7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* Nagłówek */
.header {
    margin-top: 20%; /* Przesunięcie nagłówka w dół */
}

.header h1 {
    font-size: 4em;
    margin: 0;
    font-weight: bold;
}

.header p {
    font-size: 1.5em;
    margin: 10px 0 0;
}

/* Główna treść */
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-box {
    background-color: #ffffff;
    color: #543eb7;
    padding: 20px 40px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.info-box p {
    font-size: 1.5em;
    margin: 0;
    font-weight: bold;
}

/* Stopka */
.footer {
    padding: 20px 0;
    background-color: #4A35B0;
}

.footer p {
    margin: 5px 0;
    font-size: 1em;
}

.footer span {
    font-weight: bold;
    text-decoration: underline;
}

.footer .copyright {
    font-size: 0.9em;
    opacity: 0.8;
}