/* Ustawienia ogólne */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4c800; /* Kolor tła */
    font-family: Arial, sans-serif;
}

.content-container {
    text-align: center;
}

/* Styl dla logo */
.logo {
    width: 600px;
    height: 91px;
    max-width: 100%;
    height: auto;
}

/* Styl dla napisu "STRONA W BUDOWIE" */
.under-construction {
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
    color: #000; /* Czarny kolor tekstu */
}
