body {
    background-color: #e6e6e3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-left:0;
    margin-right:0;
    margin-top: 0;
    margin-bottom:0;
}
.countdown-container {
    text-align: center;
    color: #a3a09e;
}
.time {
    font-size: 3rem;
    font-weight: bold;
}
.background{
    background-image:url("images/Icons/pages/IMG-20241003-WA0000.jpg");
    background-position: center;
    background-size: 100%;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
}
.logo{
    height: 10rem;
    width: 10rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-content: center;
    margin-top: 2rem;
}
main h1{
    font-size: 5.5rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: lighter;
}
main h2{
    font-size: 3rem;
}
header{
    font-family: "Brush Script MT";
}
header h2{
    color: orange;
    font-size: 3.5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-bottom: 2rem;
}
.title{
    font-family: "Brush Script MT";
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color:#b8b4ac;
    background-color: #524b46;
    width:80%;
    padding-bottom:0.025rem;
    padding-top: 0.025rem;
}
.subtitle{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #524b46;
    background-color: #b8b4ac;
    width: 50%;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}
.praktisch-h2{
    margin-top:10rem;
    margin-left: 4rem;
    margin-right: 4rem;
    font-family: "Brush Script MT";
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.15rem;
    color: #a32b2b;

}
.praktische-informatie{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 5rem;
    justify-content: space-evenly;
}

.praktische-informatie h2{
    text-decoration: underline;
    text-decoration-color: #fb6b6c;
    text-underline-offset: 2rem;
    text-decoration-thickness: 0.25rem;
    font-size: 1.75rem;
    font-weight: lighter;
    font-style: italic;
    margin-bottom: 1.75rem;

}
.praktische-informatie p{
    margin-left: auto;
    margin-right: auto;
}
.map h2{
    margin-top: 0.75rem;
    margin-left: auto;
    margin-right: auto;
}
.open h2{
    margin-top: 2.3rem;
}

.praktische-informatie p{
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: 3rem;
}
.eerste-woord{
    margin-left: 4rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 5rem;
    justify-content: space-evenly;
    margin-right: 4rem;
}
.eerste-woord h2{
    font-family: "Brush Script MT";
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.15rem;
    color: #a32b2b;

}

.eerste-woord p, .eerste-woord li{
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    
}
footer{
    margin-top: 1rem;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #444;
    padding-top: 0.25rem;
    padding-bottom: 0.75rem;
    width: 100vw;
}
footer p{
    margin-left: 4rem;
}


  
nav {
    display: flex;
    justify-content: space-around; 
    background-color: #524b46;
    color: #b8b4ac;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}
  
nav .burger {
    cursor: pointer;
    font-size: 24px;
    color: white;
    display: none; /* Hidden initially, shown on small screens */
}
  
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
  
  nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
  }
  
  nav ul ul {
    display: none;
    position: absolute;
    background-color: #444;
    color: #b8b4ac;
  }
  
  nav ul li:hover ul {
    display: block;
  }
  
  nav ul li ul li {
    padding: 5px 20px;
  }
  
  nav ul li ul li a {
    color: white;
  }


.baggagelijst{
    margin-top: 10rem;
    margin-left: auto;
    margin-right: auto;
}
.baggage{
    display: block;
    border: 0.125rem solid black;

}
.baggage tr, .baggage th, .baggage td{
    border: 0.125rem solid black;
}

.cantus{
    margin-top: 10rem;

}
.codex{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-grow: 1 1 auto;
    align-items: center;
}
object {
    margin-top: 5rem;
    width: 60%;
    height: 100vh;
}

iframe {
    margin-top: 5rem;
    margin-bottom: 2rem;
    width: 90%;
    height: 80vh;
}
.dag-1, .dag-2, .dag-3, .dag-4{
    width: 100vw;
    margin-left: 2rem;
}
.dag-1 ul, .dag-2 ul, .dag-3 ul, .dag-4 ul{
    margin-top: 5rem;
}

.adres{
    margin-top: 10rem;
    margin-left: 2rem;
}
  @media (max-width: 768px) {
    nav .burger {
      display: block; /* Show burger on small screens */
    }
  
    nav ul {
      position: fixed;
      padding-right: 0.75rem;
      padding-left: 0.25rem;
      top: 0;
      right: 0;
      width: 10rem;
      height: max-content;
      background-color: #524b46;
      flex-direction: column;
      align-items: flex-start;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
    }
  
    nav ul.active {
      transform: translateX(0);
    }
  
    nav ul li {
      padding: 20px;
    }
  }
  
@media (max-width: 768px){
    main h1{
        font-size: 3.5rem;
        margin-left: auto;
        margin-right: auto;
        font-weight: lighter;
    }
    main h2{
        font-size: 2.5rem;
    }

    .background{
        background-image:url("images/Icons/pages/mobile.jpg");
        background-position: center;
        background-size: 100%;
        width: 100%;
        height: 100vh;
        background-repeat: no-repeat;
    }
    .praktische-informatie{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .flex{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-evenly;

    }
    
    
} 