.content_container {
    font-family: system-ui, -apple-system, sans-serif;
    margin: 0 auto;
    max-width: 900px;
    padding: 20px;

}
body {
    margin: 0;
    display: grid;
    background-image: url("../images/heroes-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {

  font-size: 2em;
  font-weight: bold;
  margin: 0.5em 0;
}

h2, h3 {
  font-size: 1.8em;
  font-weight: bold;
  margin: 0.5em 0;
  color: white;
  text-align: left;
}

p {
  margin: 1em 0;
  color: white;
  font-size: 18px;
  text-align: left;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.hero-image {
    object-fit: cover;
    height: 100vh;
    width: 100%;
    display: block;
}

.menu {
    background-color: #662300;
    padding: 10px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.menu li {
    display: inline-block;
    margin: 0 20px;
}
.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.menu a:hover {
    color: #ddd;
}

.hero-image-text {
  position: absolute;
  align: center;
  width:30vw;
  min-width:200px;
  max-width: 600px;
  top: 20%;
  left: 20%;

}
 
