/* Standaard body instellingen */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Video op achtergrond */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Centrale content */
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  z-index: 1;
  position: relative;
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Transparent background */
}

.content {
    background: rgba(255, 255, 255, 0.9); /* Light tinted background */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    width: 400px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #007BFF;
    color: white;
    font-size: 16px;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3;
}

.images-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.images-row img {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
}

.images-row img.selected {
    border: 2px solid #007BFF;
}

.buttons-row {
    display: flex;
    justify-content: space-around;
}