/* Base styles for the whole page */
body {
  padding: 1.25rem;
  text-align: center;
  font-family: "Noto Sans Mono", monospace;
}

/* Container for content */
.container {
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
}

/* Add spacing only between siblings (not before the first element) */
.container>*+* {
  margin-top: 1.25rem;
}

.container>*:last-child {
  margin-bottom: 0;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 700,
    'GRAD' 0,
    'opsz' 48
}

.kleine-lettertjes {
  font-size: 0.7rem;
}

/* Responsive image styling */
img {
  width: 100%;
  /* Forces the image to be as wide as its container */
  height: auto;
  /* Maintains the image's aspect ratio */
  display: block;
  /* Ensures the image is a block-level element */
  margin: 1.25rem 0;
  /* Adds vertical spacing above and below the image */
}

h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.stylish-container {
  background-color: rgb(0, 0, 0);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 400;
  padding: 0.11rem 2rem;
}

/* Container for content */
.details-container {
  border: 0.2rem solid #000000;
  /* 2px solid white border */
  padding: 1rem;
}

.details-container dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 0.5rem;
  /* 0.5rem verticale en 1rem horizontale ruimte */
}

.details-container dt {
  font-weight: bold;
  text-align: left;
  /* zorgt ervoor dat de topics rechts uitlijnen */
}

.details-container dd {
  margin: 0;
  /* standaard marge verwijderen */
}

.btn {
  display: inline-flex;
  /* Makes the link a flex container */
  align-items: center;
  /* Vertically centers the text and arrow */
  justify-content: center;
  /* Horizontally centers, if needed */
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.1s ease;
}

.btn .material-symbols-outlined {
  margin-left: 0.5rem;
  /* Spacing between text and arrow */
  vertical-align: middle;
  transition: transform 0.3s ease;
  /* Smoothly animate transform property */
}

.btn:hover {
  background-color: #595959;
}

.btn:hover .material-symbols-outlined {
  transform: translateX(4px);
  /* Moves the arrow 4px to the right on hover */
}

.stylish-container-kleine-text{
  font-size: 1.8rem;
}

video {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 1rem 0;
  background: black;
}

form {
  margin-bottom: 1.5em;
}

.input-group {
  margin-bottom: 0.8em;
}

label {
  display: inline-block;
  width: 40px;
  font-weight: bold;
}

input[type="text"] {
  width: 70%;
  padding: 0.3em;
  font-size: 1em;
}

input[type="text"],
button,
label {
  font-family: inherit;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  vertical-align: middle;
}

.input-group {
        display: flex;
        align-items: center;
        margin-bottom: 1em;
    }

    .input-group label {
        margin-right: 1em;
    }

    .input-group input {
        flex: 1;
        width: auto;
        box-sizing: border-box;
    }

/* Optional: Adjustments for smaller screens */
@media (max-width: 37.5rem) {
  body {
    padding: 0.625rem;
  }

  img {
    margin: 0.625rem auto;
  }
}

