body {
  padding-top: 70px;
}

.navbar-brand1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}
.bingocontainer {
  display: grid;
  grid-template-columns: repeat(5, 8vw);
  grid-template-rows: repeat(5, 8vw);
  margin: 5px auto;
  justify-content: center;
}

.cell {
  /* font-family: "Permanent Marker", cursive;*/
  width: 8vw;
  height: 8vw;
  box-shadow: 0 0 0 1px #333333;
  border: 1px solid #333333;
  cursor: pointer;
  line-height: 8vw;
  font-size: 4vw;
  justify-content: center;
  display: flex; /* added */
  align-items: center; /* added */
}

.img-fluid {
  width: 100%; /* or any custom size */
  height: 100%;
  margin-top: 0;
  padding-top: 0;
  display: block; /* remove extra space below image */
}

.cardstroll { 
	height: 40vh; 
	overflow-y: scroll; 
	width: 100%; 
}
 
.gekozen {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
  justify-content:flex-start;
  gap: 10px;
  row-gap: 10px;
}

.plaatjes {
	display: flex;
	align-items: center;
    justify-content: center;
	width: 5vw;
	height: 5vw;
}

.trekking {
  border: 5px solid red;
  text-align: center;
  width: 200px;
  height: 200px;
  font-size: 60px;
  font-weight: 700;
  display: flex; /* added */
  justify-content: center; /* added */
  align-items: center; /* added */
}

.bingoprijs {
  font-size: 32px;
  color: green;
}

#vierkant {
  width: 4vw;
  height: 4vw;
  background: red;
}

#rechthoek {
  width: 4vw;
  height: 2vw;
  background: red;
}
#cirkel {
  width: 4vw;
  height: 4vw;
  background: red;
  border-radius: 50%;
}
#driehoek {
  width: 0;
  height: 0;
  border-left: 2vw solid transparent;
  border-right: 2vw solid transparent;
  border-bottom: 4vw solid red;
}
#ovaal {
  width: 4vw;
  height: 2vw;
  background: red;
  border-radius: 4vw / 2vw;
}
#maan {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  box-shadow: 1vw 1vw 0 0 red;
}
#egg {
  display: block;
  width: 3vw;
  height: 4vw;
  background-color: red;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
#pacman {
  width: 0px;
  height: 0px;
  border-right: 3vw solid transparent;
  border-top: 3vw solid red;
  border-left: 3vw solid red;
  border-bottom: 3vw solid red;
  border-top-left-radius: 3vw;
  border-top-right-radius: 3vw;
  border-bottom-left-radius: 3vw;
  border-bottom-right-radius: 3vw;
}
