/*

All grid code is placed in a 'supports' rule (feature query) at the bottom of the CSS (Line 77). 
        
The 'supports' rule will only run if your browser supports CSS grid.

Flexbox is used as a fallback so that browsers which don't support grid will still recieve an identical layout.

*/
* {
  box-sizing: border-box;
}

a{
	color: #333;
}

a:hover{
	text-decoration: underline;
}

.container {
  width: 1150px;
  margin: 25px auto;
  columns: 3;
}

.box {
  width: 100%;
  margin: 0 0 20px;
  background: #fff;
  overflow: hidden;
  break-inside: avoid;
  color: #333;
  min-height: 165px; /* PARA MESMO SE FOR ÁUDIO NÃO FICAR UM EMBAIXO DO OUTRO JOGADO*/
}

.box img {
  max-width: 70%;
}

#box {
	padding-left: 30%;
    padding-right: 30%;
	text-align: justify! important;
}

#box img{
	text-align: center! important;
}

.box h2 {
  margin: 0;
  padding: 15px 0;
  font-size: 16px;
}

@media (max-width: 1200px) {
  .container {
    columns: 3;
    width: calc(100% - 40px);
    padding: 20px;
  } 
}

@media (max-width: 768px) {
  .container {
    columns: 2;
  } 
}

@media (max-width: 480px) {
  .container {
    columns: 1;
  } 
}














@import url(https://fonts.googleapis.com/css?family=Montserrat:500);
/*
:root {
	font-size: 10px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	background-color: #fafafa;
}

.container {
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 2rem 2rem;
}

.heading {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 4rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	padding: 3.5rem 0;
	color: #1a1a1a;
}

.heading span {
	display: block;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: -1rem -1rem;
}

.gallery-item {
	// Minimum width of 24rem and grow to fit available space
	flex: 1 0 24rem;
	// Margin value should be half of grid-gap value as margins on flex items don't collapse
	margin: 1rem;
	box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

.gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease-out;
}

.gallery-image:hover {
	transform: scale(1.15);
}


@supports (display: grid) {
	.gallery {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
		grid-gap: 2rem;
	}

	.gallery,
	.gallery-item {
		margin: 0;
	}
}
*/