/* Algemene stijlen */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7fa; /* lichtblauw */
    color: #003366; /* donkerblauw voor tekst */
}

header {
    background-color: #00bcd4; /* heldere blauwe header */
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 60px 20px;

}

.hero h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    background-color: #ff9800; /* oranje knop */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.info {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #b2ebf2;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #00bcd4;
    color: white;
}


//* winscherm en verlies *//

.scroll_tekst {
  border: 2px solid black;
  bottom: 22px;
}

.scroll_green {
 position: relative;
  text-align: center;
  left: 300px;
  top: 100px;
  background-color: green;
  border: 2px solid black;
  width: 30%;
  height: 500px;
}

.scroll_red {
position: relative;
  text-align: center;
  left: 300px;
  top: 100px;
  background-color: red;
  border: 2px solid black;
  width: 30%;
  height: 500px;
  color: black;
}

.time-border {
  position: absolute;
  color: white;
  right: 300px;
  top: 75px;
  border: 2px solid black;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  text-align: center;
  width: 25%;
  font-size: 50px;
}

.rechthoek_recht {
  position: absolute;
  top: 200px;
  right: 550px;

text-align: center;
font-size: 15px;
 background-color: white;
  width: 150px;
  height: 300px;
  border: 2px solid black;
}

.rechthoek_liggend {
position: absolute;
  top: 200px;
  right: 200px;
 background-color: white;
text-align: center;
font-size: 15px;

  width: 300px;
  height: 150px;
  border: 2px solid black;
} 

.rechthoek_tekstborder {
  border: 2px solid black;
  background-color: white;
  position: relative;
  bottom: 20px;
}

.rechthoek {
  background-color: white;
  position: absolute;
  top: 400px;
  right: 200px;
  border: 8px solid black;

   width: 300px;
  height: 225px;
}

.share_button {
  position: relative;
  width: 8%;
  height: 50px;
  top: 140px;
  left: 900px;
  background-color: blue;
  color: white;
}

.save_button {
   position: relative;
  width: 8%;
  height: 50px;
  left: 1000px;
  top: 140px;
  color: white;
  background-color: green;
}

.inspiration_failure {
  position: absolute;
  color: red;
  font-size: 50px;
 font-family: 'Courier New', Courier, monospace;
 top: 25px;
 left: 835px;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background-color:#4a8fd8;
    padding:15px 30px;
}

.logo{
    color:white;
    font-size:22px;
    font-weight:bold;
}

.video-bg {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  z-index:-1;
}

.video-bg iframe {
  position:absolute;
  top:50%;
  left:50%;
  width:100vw;
  height:56.25vw; 
  min-height:100vh;
  min-width:177.77vh;
  transform:translate(-50%, -50%);
  pointer-events:none;
}