*{
    margin: 0;
    padding: 0;
  }
  
  /* Navigationbar */
  
  nav{
    background-color: #436947;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
  }
  nav li{
    padding: 0 13px;
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
  }
  
  nav li a{
    text-decoration: none;
    align-items: center;
    color: white;
  }
  
  nav li a:hover{
    color: #FAE525;
  }
  nav li:first-child{
    margin-right: auto;
  }
  
  .sidebar{
    position: fixed;
    top: 0; 
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: rgba(67, 105	, 71, 0.7);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sidebar li{
    width: 100%;
    height: 50px;
  }
  .sidebar a{
    width: 100%;
    height: 50px;
    padding-top: 40px;
  }
  
  
  .menu-button{
    display: none;
  }
  @media(max-width: 968px){
    .hideOnMobile{
      display: none;
    }
    .menu-button{
      display: block;
    }
  }
  @media(max-width: 400px){
    .sidebar{
      width: 100%;
    }
  }
  
  
  /* article pages */
  
  h2{
    color: black;
    width: 60%;
    margin: 0 auto;
    font-size: 35px;
    margin-bottom: 4vh;
    margin-top: 5vh;
  }
  
 
  p{
    font-size: 18px;
  }
  
  .content{
    margin-top: 1vh;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 6vh;
  }
  
  .flag{
    width: 100%;
    height: auto;
    max-width: 500px;
  }

.bonfire{
  margin-left: 20%;
  height: 600px;
}

  
  @media only screen and (max-width: 600px) {
  
    p{
      font-size: 11px;
    }
  
    .content{
      margin-top: 1vh;
      width: 80%;
      margin: 0 auto;
      margin-bottom: 6vh;
  }
  
    h2{
      color: black;
      width: 80%;
      margin: 0 auto;
      font-size: 22px;
      margin-bottom: 4vh;
      margin-top: 5vh;
  }
 
  
  /* front page */
  
  .bgImg{
    width: 100%;
    height: auto;
  }
  
  /* Gallery */
  #myBtnContainer{
    width: 350px;
    float: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
 #myBtnContainer button{
    background-color: #436947;
    border: none;
    padding: 5px 8px 5px 8px;
    color: white;
    margin-right: 20px;
    display: block;
 } 

.styled-div {
    background-color: blue;
    border: none;
    padding: 5px 8px;
    color: white;
    margin-right: 20px;
    display: block;
}
 
 .gallery{
    margin: 20px 10px 20px 10px;
 }

 .gallery img{
    display: block;
    width: 300px;
    height: 300px;
    padding: 7px;
    object-fit: cover;
 }

#no_data_img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }


 .gallery a {
    float: left;
    display: flex;
    flex-direction: row;

 }
.thumbnail {
	width: 300px;
	height: 300px;
	object-fit: cover;
}
.uk-slidenav {
	padding: 18px 23px;
	opacity: 0.0;
}
.uk-slidenav-next:hover {		
	background:url(../images/next.png);
	opacity: 0.5;
}
.uk-slidenav-previous:hover {
	background:url(../images/prev.png);
	opacity: 0.5;
}
.alert-box {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8d7da;
    color: #721c24;
    padding: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}
		.navigation {
    text-align: center;
    margin-top: 10px;
}
