body {
    font-family: 'Arial', sans-serif;
  }
  
/*navigatiebar*/
.navbar-brand {
  font-weight: bold;
  font-size: 30px;
  padding-left: 12px;
}

.navbar-nav .nav-link {
transition: color 0.3s ease-in-out, transform 0.3s ease-in-out; 
}

.navbar-nav .nav-link:hover {
  color: #FF8150;
  transform: scale(1.1); 
}

.contact {
  margin-right: 100px;
}

.over-ons {
  padding-right: 20px;
}

/*intro-zin*/
.intro-zin {
    color: #111;
    font-weight: bold;
  }

  h2 {
    color: #FF8150;
    font-size: 24px;
    font-weight: bold;
  }
  
  p {
    line-height: 1.6;
  }

/*tickets*/
.container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 40px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-weight: bold;
  }
  
  select,
  input[type=number] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .submit-section {
    margin-top: 20px;
  }
  
  .submit-button {
    background-color: #ff8150;
    color: #fff;
    border: none;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 50px;
  }
  
  .submit-button:hover {
    background-color: #e6735f;
  }

/*footer*/
.footer {
  background-color: #111;
  color: #ddd;
  padding:  20px 0;
}

.footer p {
  color: #ddd;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.footer-section ul,
.footer-section p {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.footer img {
width: 50px;
}

.social-media a {
  text-decoration: none;
  color: #ddd;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #444;
}