/* Design START */
body {
    margin: 0;
    background-color: #000;
}

.primary-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Dodajemy układ w pionie, aby umieścić przycisk poniżej wideo */
}

.video-background {
    width: 100%;
    height: auto;
    max-height: 100vh;
    cursor: pointer;  /* Dodanie kursora wskazującego na kliknięcie */
}

/* Styl przycisku */
.discover-button {
    margin-top: 20px;  /* Odstęp między wideo a przyciskiem */
    padding: 15px 30px;
    background-color: #1D453C;  /* Kolor przycisku w hex */
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;

    /* Zmiana czcionki na 'Metropolis', jeśli jest dostępna */
    font-family: 'Poppins', sans-serif;
}

.discover-button:hover {
    background-color: #17342D;  /* Darker shade of the button's color in hex */
    cursor: pointer;
}
