#tiger {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12-column grid for flexibility */
    grid-template-rows: auto;
    min-height: 100vh;
    align-items: center; /* Vertically center content */
    justify-items: center; /* Horizontally center content */
    gap: 20px; /* Add some space between items */
    position: relative;
    margin: none;
    background: url('../images/forside2.jpg') no-repeat center center / cover;
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden;
}

.video-container {
    grid-column: 1 / -1; /* Span across all 12 columns */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.thumbnail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.thumbnail img {
    max-width: 800px;
    height: auto;
    transition: all 0.5s ease;
    z-index: 10;
}

.listen-now-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    font-size: 60px;
    color: #ffffff;
    cursor: pointer;
    background-color: transparent;
    border: none;
    transition: opacity 0.3s ease, color 0.3s ease;
    z-index: 10;
}

.listen-now-btn i {
    display: inline-block;
    font-size: 60px;
}

.listen-now-btn:hover {
    color: #ffffff99;
}

.video-container video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: none; /* Initially hidden */
}

@media (min-width: 768px) and (max-width: 1023px) {
    .thumbnail img {
        max-width: 600px;
    }
    .listen-now-btn {
        font-size: 50px;
    }
    .listen-now-btn i {
        font-size: 50px;
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 767px) {
    .thumbnail img {

        max-width: 500px;
    }
    .listen-now-btn {
        font-size: 40px;
    }
    .listen-now-btn i {
        font-size: 40px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .thumbnail img {
        max-width: 350px;
    }
    .listen-now-btn {
        font-size: 40px;
    }
    .listen-now-btn i {
        font-size: 40px;
    }

    iframe {
        pointer-events: auto; /* Tillad interaktion */
        touch-action: manipulation; /* Sørger for, at brugeren kan interagere med iframe */
    }

    #tiger {
        overflow-y: auto; /* Tillad lodret scrolling */
    }

    body {
        overflow-y: auto; /* Sørger for, at hele siden kan scrolle */
    }

}