@font-face {
  font-family: brushstroke;
  src: url(../font/Blackboard-Regular.ttf) format("woff");
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  color: black;
  /* padding: 20px; */
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-style: bold;
  font-size: 35px;
  font-weight: bolder;
}
.header h1 {
  margin: 0;
} 
body {
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  background-color: black;
  background-image: url("../image/image0.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

main {
  margin-top: 80px;
}
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  clear: both;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  /* background-image: url("../image/image0.jpeg");
  background-size: cover;
  background-position: center; */
}
.audio-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  gap:  75px;
  margin-top: 20px;
  margin-bottom: 45px;
}
.audio-grid-item {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  align-items: center;
}
.audio-grid-item img {
  width: 325px;
  height: 325px;
  object-fit: cover;
  margin-bottom:20px;
}
.audio-grid-item video {
  width: 355px;
  height: 355px;
  object-fit: cover;
  margin-bottom:20px;
}
.audio-description {
  font-size: 30px;
  font-style: bold;
  /* font-family: 'Times New Roman', Times, serif; */
  margin-top: 10px;
  background-color: black;
  color: white;
  text-align: center;
}
.video-description {
  font-size: 30px;
  font-style: bold;
  /* font-family: 'Times New Roman', Times, serif; */
  margin-top: 10px;
  background-color: white;
  color: black;
  text-align: center;
}
@media screen and (max-width:600px){
	.header{
		font-size: 20px;
	}
  .audio-description{
    font-size: 15px;
  }
  .video-description{
    font-size: 15px;
  }
}

@media (min-width:601px) and (max-width:900px){

}