header {
  background-color: #1a81bdff; /* Red background */
  height: 400px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image: url("../public/EVE/p2-bkd.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
  
  .header-container {
    width: 60%; /* Adjust as needed */
    max-width: 1200px;
    margin: 0 auto;
    background-color: hsla(0, 0%, 100%, 0.8);
    box-shadow: 0 8px 26px -4px hsla(0, 0%, 8%, .15), 0 8px 9px -5px hsla(0, 0%, 8%, .06)!important;
    border-radius: 1rem;
  }
  
  .header-content {
    padding-right: 5rem;
    padding-left: 5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    /* max-width: 80%; */
  }
  
  .logo img {
    width: 150px; /* Adjust as needed */
  }
  
  .text-content {
    margin-left: 20px; /* Add margin to separate logo and text */
  }
  
  h1 {
    font-size: 45px;
    font-weight: 1000;
    margin-bottom: 10px;
    font-family: sans-serif;
  }
  
  .EVEHeaderText {
    background-image: linear-gradient(0deg, rgb(0, 0, 0) 0.00%, rgba(26, 129, 189, 0.92) 100.00%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: none;
  }
  
  .slogan {
    color: #fff; /* White text */
    font-size: 16px;
    color: #252f40ff;
    font-family: sans-serif;
  }
  
  .buttons {
    display: flex;
    justify-content: flex-start; /* Stack buttons vertically */
    margin-top: 10px; /* Add margin to separate buttons from text */
  }
  
  .button {
    background-color: #fff; /* White background */
    color: #20273fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    margin-bottom: 10px; /* Add margin to separate buttons */
    margin-right: 10px; /* Add margin to separate buttons */
    font-family: sans-serif;
    align-items: center;
    justify-content: center;
  }
  
  .button:last-child {
    margin-right: 0; /* Remove margin for the last button */
  }
  
  .button:hover {
    background-color: #1a81bdff; /* Darker red on hover */
    color: #fff;
  }
  
  
  @media only screen and (max-width: 1270px) {
    header {
      height: auto; /* Adjust as needed */
      padding: 10px; /* Adjust padding for smaller screens */
    }
  
    .header-container {
      width: 80%; /* Adjust as needed for smaller screens */
      padding: 10px; /* Adjust padding for smaller screens */
    }
  
    .header-content {
      padding-right: 1rem; /* Adjust padding for smaller screens */
      padding-left: 1rem; /* Adjust padding for smaller screens */
      padding-top: 1rem;
      padding-bottom: 1rem;
      flex-direction: column; /* Stack logo and text vertically on smaller screens */
    }
    
    .logo img {
      width: 80px; /* Adjust as needed */
    }
  
    .text-content {
      margin-left: 0; /* Remove margin for smaller screens */
    }
  
    h1 {
      font-size: 30px; /* Adjust font size for smaller screens */
      margin-bottom: 5px;
    }
  
    .slogan {
      font-size: 14px; /* Adjust font size for smaller screens */
    }
  
    .buttons {
      justify-content: center; /* Center buttons on smaller screens */
      margin-top: 5px; /* Adjust margin for smaller screens */
    }
  
    .button {
      margin-bottom: 5px; /* Adjust margin for smaller screens */
      margin-right: 5px; /* Adjust margin for smaller screens */
      font-size: 1.7vh;
    }
  }