/* Ustawienie tła strony */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

/* Styl nagłówka */
header {
    background-color: rgba(0, 0, 0, 0.6); /* Przezroczystość dla lepszej czytelności */
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Nawigacja */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Styl numeru telefonu */
.phone-number {
    color: yellow;
    font-weight: bold;
    font-size: 24px;
}

/* Treść strony */
main {
    padding: 50px;
    text-align: center;
}

/* Stopka */
footer {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}
