body { 
  margin: 0;
  height: 100vh;
  background: 
    linear-gradient(#07255f8e, rgba(37, 33, 73, 0.185)),
    url("../images/background.png") center/cover no-repeat;
  background-attachment: fixed;
  background-position: center;
  transition: background-position 0.5s ease;
  position: relative; /* Make sure the pseudo-element can be positioned correctly */
}
h1{
    text-align: center;

}
nav{
    border-style: dashed; color: #000000;
    background-color: rgb(50, 48, 75); 
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap:15x;
  flex-wrap: wrap; /* Zorgt dat het menu op mobiel kan breken */
}
nav a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}v a:hover{
    background-color: rgb(193, 207, 216);
}.nav li{
float: left;
text-decoration: none;
}


footer { /*Footer styling*/
  background-color: rgb(50, 48, 75);    
  color: #ffffff;            
  text-align: center;      
  padding: 1rem;
}
h3{
  text-align: center;
    color: rgb(255, 255, 255);
    padding-left: 50px;
    padding-right: 100px;
    font-size: larger;
}
h1{
  text-align: center;
    color: rgb(255, 255, 255);
    padding-left: 50px;
    padding-right: 100px;
    font-size: larger;
}
p {
  text-align: center;             /* Center the text inside the paragraph */
  color: rgb(255, 255, 255);
  line-height: 1.2;
  max-width: 90ch;                /* Limits the width for better readability */
  margin: 0 auto;                 /* Centers the block itself horizontally */
  padding-left: 50px;
  padding-right: 100px;
}
section {
  display: block;
}

.spete{
  float: left;
}

img {
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
  margin: 0 auto;
}
