/* Reset en basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background-image: url('Garage_Bakker.jpg'); /* achtergrond */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Logo linksboven */
.logo {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 80px;
  height: auto;
  z-index: 20;
}

/* ZWEVENDE tekst bovenin */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: space-evenly; /* gelijk verdeeld over de breedte */
  align-items: center;
  z-index: 10;
  /* geen achtergrondkleur */
}

/* Tekststijl */
.top-bar h1 {
  font-size: xxx-large;
  color: yellow;
  text-shadow: 2px 2px 5px black;
}

/* Bottom-bar met 2 links gelijk verdeeld over de breedte */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: yellow;
  display: flex;
  justify-content: space-evenly; /* links gelijk verdeeld over de balk */
  align-items: center;
  z-index: 15;
}

/* Link-styling */
.bottom-bar a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: blue; /* blauw ipv rood */
  transition: color 0.3s ease;
}

.bottom-bar a:hover {
  color: darkblue;
}
