/* assets/css/index.css */

body {
  height: 100vh;
  background-image: url(../images/wallpaper_summer.jpg);
  background-size: cover;
  background-position: center 100px;
  color: #2c3335;
  cursor: url("../images/tank-top.png") 5 5, auto;
}

.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  margin: 60px auto 0;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}

.heading,
.intro {
  font-family: "Cabin", sans-serif;
}

.heading {
  margin-bottom: 2rem;
}

.heading h1 {
  font-family: "Cabin", sans-serif;
  font-size: 3rem;
  margin: 4rem 0 1rem;
  text-shadow: 3px 3px 3px #2c3335b0;
}

.intro-group {
  display: none;
}

.intro-group.active {
  display: block;
  width: 50%;
  color: #ffffff;
  background: #2c333575;
  border-radius: 5px;
  padding: 10px;
  border-left: none;
}

.intro-group h3:first-of-type {
  margin-bottom: 10px;
}

.intro-group p {
  margin: 10px;
}

/* Stijl voor taalknoppen */
.language-buttons {
  margin-bottom: 20px;
}

.language-buttons button {
  margin-right: 10px;
  background-color: transparent;
  /* Achtergrondkleur */
  border: none;
  color: #333;
  /* Tekstkleur */
  cursor: pointer;
}

@media (max-width: 768px) {
  body {
    background-image: url(../images/wallpaper_mobile.png);
    background-size: cover;
  }

  .wrapper {
    justify-content: center;
  }

  .wrapper h1 {
    margin: 0 0 1rem;
    font-size: xx-large;
  }
}
