body{
    background-color: #f5f1ec;
    color: black;
    font-family: 'Zen Maru Gothic';
}

h2{
    font-size: 3em;
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

h3{
    font-size: 4em;
    color: rgb(218, 121, 2)
}

#brus{
    display: flex;
    align-items: center;
}

/*Styling af store billeder*/
#bigphoto{
    width: 100%;
}

#infografik{
    width: 100%;
}

#oelbrus{
    width: 315em;
}

.tekst{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2em;
}

#sammenhold {
    font-size: 1.2em;
    line-height: 3rem;
    margin-bottom: 1em;
}

#smag{
    color: black;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
}

.prdtekst{
    font-size: 1.5em;
}

#link{
    color: rgb(87, 65, 0);
}

h2{
    font-size: 3em;
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
    margin-top: 4em;
}

h3{
    font-size: 2em;
}

/*styling af gradient*/
.image-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height of the viewport */
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire container */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.864) 5%, transparent 95%);
    filter: blur(10px); /* Adjust the blur amount as needed */
    pointer-events: none; /* Allow clicks to pass through the overlay */
}

/* Styling af knap*/
.button {
    display: inline-block; /* Make it behave like a button */
    padding: 10px 40px; /* Add some padding */
    background-color: rgb(218, 121, 2); /* Button background color */
    color: white; /* Text color */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline */
    border-radius: 20px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.button:hover {
    background-color: rgb(180, 100, 0); /* Darker shade on hover */
}


#brus{
    display: flex;
    align-items: center;
    background-color: #EAE8E4;
}

/*Styling af store billeder*/
#bigphoto{
    width: 100%;
}

#infografik{
    width: 100%;
}

#oelbrus{
    width: 250em;
}


/*Styling af Merch "diasshow"*/
.slideshow-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }

  .slideshow-wrapper {
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: auto;
    width: 100%;
    padding: 10px 0;
    gap: 5px; /* Giver lidt luft mellem billederne */
}

.slideshow-wrapper img {
    width: 100%; /* Sørger for, at billedet fylder hele containeren */
    height: auto;
    transition: transform 0.3s ease-in-out; /* Gør det muligt at animere transformationen glidende */
}

.slideshow-wrapper img:hover {
    transform: scale(1.1); /* Forstørrer billedet med 10% */
}

.slide {
    flex: 0 0 calc(100% / 4); /* Sørger for, at kun 4 slides er synlige ad gangen */
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

  
.slide img {
    max-width: 90%; /* Tilpas billedets størrelse */
    height: auto;
    cursor: pointer;
}
  
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

section.slideshow-container {
    display: flex;
    align-items: center;
}
  
button.prev:hover, .next:hover {
    background-color: #7d631a95;
    color: white;
}
  
  /* For at skjule scrollbar */
.slideshow-wrapper::-webkit-scrollbar {
    display: none;
}

#slide1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#slide2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#slide3{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#slide4{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#slide5{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


#slide6{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


article.slideshow-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.slideshow-wrapper {
    display: flex;
    overflow: hidden; /* Skjul overskydende slides */
}

.slide {
    flex: 0 0 calc(100% / 4); /* Sørg for, at kun 4 slides er synlige ad gangen */
    display: none; /* Skjul alle slides som standard */
}