body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #f0f0f0;
}
.hero {
    background: url('../images/very dark sepia ultra synth 3376207259 modif.jpeg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-text h1 {
    font-size: 2.5rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem;
}
.navbar {
    background-color: #222;
    padding: 1rem;
    text-align: center;
}
.navbar a {
    color: #e63946;
    margin: 0 1rem;
    text-decoration: none;
}
main {
    background: url('../images/very dark sepia man dead 2931040706.png') no-repeat center center/cover;
    padding: 60px 20px;
    color: white; /* Optional: ensures text is readable */
    min-height: 60vh; /* Makes sure there's enough height */
}
h2 {
    color: #e63946;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 70%; height: 70%;
  border: 0;
}
