body {
  background-image: url('/werdstuf.png');  
}
@font-face {
  font-family: 'CustomFont';
  src: url('/nfopad.ttf');
}

header {
  text-align: center;
}

header h1 {
  font-family: 'CustomFont', sans-serif; /* Apply the custom font */
  font-size: 36px;
  color: #FCF6F5;
}
  
header h2 {
  font-family: 'CustomFont', sans-serif; /* Apply the custom font */
  font-size: 24px;
  color: #FCF6F5;
}
  
header h6 {
  font-family: 'CustomFont', sans-serif; /* Apply the custom font */
  font-size: 16px;
  color: #FCF6F5;
}

.button-container {
  text-align: center;
}

p {
  color: #ccc;  
}

.cool-p {
  font-family: 'CustomFont', sans-serif;
  background-color: #990011; /* Rectangle background color */
  border: 2px solid #FCF6F5;
  padding: 10px 20px;        /* Space inside the rectangle */
  color: #fff;
  border-radius: 5px;        /* Optional: rounded corners */
  display: inline-block;     /* Shrink-wraps the content */
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
  
.button-container a {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  background-color: #990011; /* Button background color */
  color: #fff; /* Button text color */
  border: 2px solid #FCF6F5; /* Button border */
  border-radius: 5px; /* Button border radius */
  font-family: 'CustomFont', sans-serif; /* Apply the custom font */
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

.button-container a:hover {
  background-color: #0056b3; /* Hover background color */
  border-color: #0056b3; /* Hover border color */
}

.button-container p {
  font-family: 'CustomFont', sans-serif;
  font-size: 16px;
  color: #FCF6F5;
}