* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #1C1C1C;
  font-family: 'Merriweather', serif;
  color: #F2E9DC;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.header h1 {
  font-size: 2.5rem;
  color: #A12D2F;
  font-family: 'Norse', serif; /* Replace with your Norse-style font */
  margin-top: 20px;
  text-shadow: 1px 1px 5px black;
  letter-spacing: 2px;
}

.header p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #F2E9DC;
}

.tribe-banner {
  width: 100;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px #A12D2F);
  float: left;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}