body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #060;

}

/*
 * header area with menus
 */

header {
  background-color: #141ede;
  height: 35px;
  width: 100%;
  opacity: 0.7;
  margin-bottom: 20px;
}

h1,h2,h3,h4,h5,h6,p{
margin-left:12px;

}

header h1.logo {
  margin: 0;
  font-size: 1.5em;
  color: rgba(236, 192, 192, 0.777);
  text-transform: uppercase;
  float: left;
  margin-left:-35px;
  margin-top: 5px;

}

header h1.logo:hover {
  color: rgba(236, 192, 192, 0.777);
  text-decoration: none;
}
.container {
  /* width: 1200px;
  margin: 0 auto; */
  width: 90%; /* Use a percentage for a fluid layout */
  max-width: 1200px; /* Set a max width for large screens */
  margin: 0 auto;
}


/* menus on header */
.menu {
  float: right;
  margin-top: 8px;
}

.menu li {
  display: inline;
}


.menu li + li {
  margin-left: 50px;
}

/*menus colour*/
.menu li a {
  color: rgb(250, 245, 245);
  text-decoration: none;
  font-size: 18px;
}

/* mouse cursor over link */
.menu li a:hover {
  color: red;
}

.menu li:first-child a {
  background-color: #d83810;
}

@media screen and (max-width: 768px) {
  /* Adjustments for smaller screens */
  .logo {
    float: none; /* Stack the logo and menu */
    text-align: center;
    margin-left: 0;
  }

  .menu {
    float: none;
    text-align: center;
    margin-top: 10px;
  }

  .menu li {
    display: block; /* Make menu items appear on separate lines */
    margin: 10px 0;
  }

  header {
    height: auto; /* Allow the header to grow in height */
  }
}


