body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  font-family:'Barlow', sans-serif;
  color: black;
}

body.turquoise{background:linear-gradient(90deg, #25b0d3, #8eedfa);}
body.blauw{background:linear-gradient(90deg, #0877D2, #5FA4FF);}
body.paars{background:linear-gradient(90deg, #7945CE, #B27DE9);}
body.roze{background:linear-gradient(90deg, #FF64B6, #FFA3B4);}
body.rood{background:linear-gradient(90deg, #ff5141, #FF8B6A);}
body.oranje{background:linear-gradient(90deg, #fd983f, #FFB02D);}
body.geel{background:linear-gradient(90deg, #FFAE39, #FFEE4B);}
body.groen{background:linear-gradient(90deg, #6ac73f, #A8E063);}

.fit {
  max-width: 100%;
  max-height: auto;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.content {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.container:after, .content:after, .fotobox:after {
  content: '';
  display: block;
  clear: both;
}
  
@media (min-width: 1000px) {
.container {max-width: 890px;}
.content {max-width: 800px;}
.breed {grid-column: span 2;}
}

@media (min-width: 600px) {
  .breed {grid-column: span 2;}
}

@media (max-width: 300px) {
  .breed {grid-column: span 1;}
}

/* begin navigatiebalk */
.menu {
  position: relative;
  display: grid;
  height: 56px;
  color: white;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 1rem;
  z-index: 100;
}

.menu img {
  margin-top: -14px;
  height: 30px;
}

.menu p {
  font-family:'BarlowLight', sans-serif;
  font-size: 14px;
  margin-top: 0.1rem;
  font-size: 1rem;
}

.menubar {
  height: 56px;
  width: 100vw;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 5%, rgb(36, 36, 36) 40%);
  position: absolute;
  box-shadow: 5px 5px 5px -2px rgba(0,0,0,0.4);
  z-index: 99; 
}
/* einde navigatiebalk */

.layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: auto;
  column-gap: 15px;
  row-gap: 15px;
}

.layout div {
    border-radius: 0.5rem;
}

.layout p {
    line-height: 140%;
    margin: auto;
    font-family:'Barlow', sans-serif;
    font-size: 16px;
}

/* fotobox VIEWER begin*/
.fotobox {
    position: relative;
    height: max-content;
    text-align: center;
    padding: 10px;
    background-color: white;
    box-shadow: 5px 5px 5px -2px rgba(0,0,0,0.4);
}

.fotobox p {
  margin-bottom: 0.5rem;
}

.fotobox .btnL {
  position: absolute;
  top: 45%;
  left: 0%;
  cursor: pointer;
}

.fotobox .btnR {
  position: absolute;
  top: 45%;
  right: 0%;
  cursor: pointer;
}

.fotobox img {
  width: 100%;
  height: auto;
}

.btnL:hover, .btnR:hover {
  background-color:white;
}

input[type="image"]:focus {
  outline: none;
}
/* fotobox VIEWER eind */

.itembox {
  text-align: center;
  height: max-content;
  min-width: 200px;
  margin: 0;
  padding: 8px;
  background-color: white;
  box-shadow: 5px 5px 5px -2px rgba(0,0,0,0.4);
}

.itembox p {
  margin-bottom: 0.5rem;  
}

.textbox {
    box-sizing: border-box;
    padding: 15px;
    background: linear-gradient(0deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    border: 1px dotted white;
}

.breed p, h1 {
  display: inline;
}