

body {
	font-family: 'Goia Display', sans-serif;
	background-color: black;
	margin: 20px;
	}

main {
	padding: 20px;
	}

h1 {
  font-size: 88px;
  line-height: 0.1;
  color: white;
  margin-top: 70px;
}

h2 {
  font-size: 28px;
  line-height: 1;
  color: white;
  margin-top: 0px;
}

h3 {
  font-size: 15px;
  color: white;
}

.text-box {
  margin-top: 15px;
	text-align: center;
	}

.grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px; 
	justify-items: center;
  }
  
/* Polaroid */
  .polaroid {
	background-color: white;
	border-radius: 10px;
	width: 200px;
	padding: 6px;
	/* box-shadow: 4px 4px 6px rgb(249, 229, 3); */
  }

  .polaroid:hover {
	transform: scale(1.05);
	}
  
  .image-box {
	width: 100%; 
	padding-top: 100%; 
	position: relative;
	display: block;
  }
  
  .image-box img {
  background-color: black;
  border-radius: 7px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }

	.polaroid video {
	display: block;
	margin: 0 auto;
	width: 200px; 
	height: 200px; 
	object-fit: cover;
	border-radius: 7px; 
	}
	
  .caption {
	margin-top: 5px;
	margin-bottom: 10px;
	color: black;
	font-size: 16px;
	text-align: left;
  }
  
  .number {
  	font-size: 35px;
 	margin-left: 10px;
	margin-right: 5px;
  }




  /* Boxen */	
/* .box {
	display: block;
	background-color: black;
	border: 2px solid white;
	border-radius: 8px;
	text-align: left;
	padding: 20px;
	font-size: 16px;
	text-decoration: none;
	color: white;
	transition: transform 0.3s, background-color 0.3s;
	} */
	  
