/* style.css */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #333;
    color: rgb(127, 54, 54);
    
    /* Apply Custom Font */
    font-family: 'Roboto', sans-serif; 
}

/* Container styling */
.main-header {
  display: flex;
  justify-content: space-between; /* Pushes logo and nav to opposite ends */
  align-items: center; /* Vertically centers the items */
  padding: 10px 5%;
  background-color: #111213;
  border-bottom: 1px solid #d21515;
}

/* Logo sizing */
.logo img {
  height: 50px; /* Control logo height */
  width: auto;  /* Maintain aspect ratio */
}

.logo-center {
  display: block; /* Images are inline by default; must be block to use auto margin */
  margin-left: auto;
  margin-right: auto;
  width: 150px; /* A width must be defined for margin auto to work */
}


/* Navigation list styling */
.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin-left: 20px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.copyright p {
  margin: 0;
  font-size: 14px;
  color: #000000;
}
