* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.hero-section {
    height: 100vh;
    background-image: url('background.jpg'); /* Tutaj wstaw zdjęcie tła */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section .content {
    background: rgba(0, 0, 0, 0.8); /* Przezroczysty czarny pasek w tle dla tekstu */
    padding: 20px;
    border-radius: 10px;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.hero-section a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero-section a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #222;

  opacity: 0.7;

    color: white;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}