@charset "utf-8";
/* CSS Document */
body {
  font-family: 'Georgia', serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.hero {
  background-color: #fff;
  text-align: center;
  padding: 50px 20px;
  color: black;
}

.banner {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.button {
  display: inline-block;
  margin-top: 20px;
  background: #333;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 50px 20px;
  text-align: center;
}

.video-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.video-grid iframe {
  width: 300px;
  height: 200px;
}

.newsletter input {
  padding: 10px;
  margin-top: 10px;
  width: 250px;
}

.newsletter button {
  padding: 10px 20px;
  margin-left: 10px;
}

footer {
  background: #222;
  color: white;
  padding: 20px;
  text-align: center;
}

.socials a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
	
