html,
body {
  overflow: auto;
  padding: 0;
  margin: 0;
  height: 100%; 
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  background-image: url('https://images.pexels.com/photos/1089451/pexels-photo-1089451.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}


* {
  box-sizing: border-box;
}
main {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.title {
  margin: 2rem 0 1rem 0;
  line-height: 1.15;
  font-size: 3rem;
  color: #ffff;
}

.title,
.description {
  text-align: center;
}

.description {
  margin: 2rem 0;
  line-height: 1.5;
  font-size: 1.5rem;
  color: #ffff;
}

.code {
  background: #fafafa;
  border-radius: 5px;
  padding: 0.75rem;
  font-size: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
}

.bg-custom_card{
  background-color: #006600;
}

.bg-custom {
  background-color: #F5F3EB !important; /* Replace with your desired color */
}

.footer {
  width: 100%;
  margin: auto;
  background-color: #F5F3EB;
  color: black;
  text-align: center-left;
  font-size: 20px;
  padding: 1rem;  
  box-sizing: border-box;
  flex-shrink: 0;  
}


img {
  max-width: 100%;
  height: auto;
}

.logo {
  position: absolute;
  top: 10px; 
  right: 10px; 
  width: 15rem;
}

/* Media queries for responsive design */
/* kleine schermen */
@media (max-width: 600px) {
  .grid {
    width: 100%;
    flex-direction: column;
  }
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .grid {
    width: 100%;
    flex-direction: column;
  }
}
 /* medium schermen */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .grid {
    width: 100%;
    flex-direction: column;
  }
}
/* deskop versie*/
@media screen and (min-width: 1024px) {
  .grid {
    width: 100%;
    flex-direction: row;
  }
}
