::-moz-selection { /* Code for Firefox */
background-color: #ff000b;
    color: #2c2f33;
}

::selection {
    background-color: #ffffff;
    color: #000000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

header {
  color: #fff;
  text-shadow: 1px 1px #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  padding: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}


nav ul {
  list-style: none;
  display: flex;
}

nav li:not(:last-child) {
  margin-right: 20px;
}

nav a {
  color: #333;
  text-decoration: none;
}

.hero {
  height: 500px;
  background-image: url("../img/ENRY/ENRY_FOKKER_01.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: #fff;
  text-shadow: 2px 2px #333;
}

.hero p {
  font-size: 24px;
  color: #fff;
  text-shadow: 2px 2px #333;
}

.featured-files {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; 
  align-content: flex-start;
  padding: 50px 0;
  
}

.featured-files h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 1px 1px #333;
}

.file-card {
  background-color: #fff;
  width: 280px;
  margin-bottom: 2em;
  border-radius: 5px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
}


.file-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
}

.file-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.file-card p {
  margin-bottom: 20px;
}

.learn-more {
  font-size: 15px;
  display: block;
  width: 100%;
  max-width: 150px;
  margin: auto auto 0;
  background-color: #f5f5f5;
  color: #333;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/*
.download-btn {
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  background-color: #f5f5f5;
  color: #333;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.download-btn:hover {
  background-color: #333;
  color: #fff;
  cursor: pointer;
} */

.projects {
  background-color: #f5f5f5;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
}

.projects h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.file-vignette {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  margin-bottom: 30px;
}

.file-vignette img {
  width: 250px;
  border-radius: 5px 0 0 5px;
}

.vignette-text {
  padding: 50px;
  margin: 0 0 0;
}

.vignette-text h3 {
  font-size:30px;
  text-align: left;
}

/*.vignette-text p {
  margin: 50px;
  text-align: left;
  
} */
.proj-learn-more {
  font-size: 15px;
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 50px auto 0;
  background-color: #f5f5f5;
  color: #333;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* Product page styles */

main#B69 {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
}

#file-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}

#file-details h2 {
  font-size: 2em;
  margin-top: 0;
}

#file-details p {
  margin: 0.5em 0;
}

#file-details a.download-btn {
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  padding: 1em 2em;
  text-decoration: none;
}

#file-details a.download-btn:hover {
  background-color: #0069d9;
}

#file-details p span {
  color: #777;
}

#related-files {
  margin-top: 2em;
}

#related-files h2 {
  font-size: 1.5em;
  margin-top: 0;
}

#related-files ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#related-files li {
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1

