/* Hier vind je alle opmaak voor de beginpagina */

/* Hiermee laden we het lettertype in */
@font-face {
  font-family: 'Vintage Straps';
  src: url('font/vintage_straps_bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Avenir';
  src: url('font/AvenirLTStd-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Vintage Straps', 'Avenir', Arial, Helvetica, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D90011; /*Als om wat voor reden dan ook de afbeelding niet laadt, is dit de kleur */
  margin: 0;
  overflow: hidden;
  color: white;
}



/* -------------------- De foto achtergrond -------------------- */
.background {
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
  background: url('../images/index/index_achtergrond.jpeg') no-repeat center center;
  background-size: cover;
  z-index: -1;
  opacity: 1;
}


/* -------------------- Het logo-------------------- */
.pijl {
  width: 35vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: transparent;
}

.pijl img {
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}



/* -------------------- De knopjes -------------------- */
.pijl-buttons {
  width:95vw;
  display: flex;
  position: absolute; 
  left: 50%;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 5;
  transform: translate(-50%, 50px);
  bottom: 10vw;
}

.pijl-buttons button {
  height: 40px;
  width: 120px;
  padding: 0;
  font-size: 2rem;
  -webkit-nbsp-mode: normal;
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  border-radius: 3px;
}

.pijl-buttons button:hover {
  background-color: rgba(255, 230, 230, 0.3);
  transform: scale(1.03);
}




@media screen and (max-width: 900px) {
.pijl{
  width: 70vw;
}

.pijl-buttons {
  bottom: 17vh;
}

.pijl-buttons button {
    height: 55px;
    width: 165px;
    font-size: 2.3rem;
}

}

@media screen and (max-width: 600px) {
.pijl{
  width: 95vw;
}

.pijl-buttons {
  bottom: 13vh;
}

.pijl-buttons button {
  font-size: 2.2rem;
  margin: 10px;
  height: 45px;
  width: 135px;
}

}


/* Twee specefieke Ipads */
@media only screen 
  and (min-width: 900px)
  and (max-height: 1400px)
  and (pointer: coarse) {
  .pijl{
  width: 70vw;
  }

.pijl-buttons {
  bottom: 15vh;
}

.pijl-buttons button {
    height: 55px;
    width: 165px;
    font-size: 3rem;
}
  
}