
.project_logo img {
    align-content: center top;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

.project_logo {
    width: 417px; /* Adjust width as needed */
    height: 111px; /* Adjust height as needed */
    background-image: url('../../images/logo.png'); /* URL to your image */
    background-size: contain;
    background-position: center top; /* Center the background image horizontally and align it to the top */
    margin: 0 auto; /* Center the container horizontally */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
  }

.logo_text {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    font-family: Arial, Helvetica, sans-serif; /* Set font to Helvetica with fallbacks */
    color: black; /* Set text color to red */
    font-size: 38px;
    justify-content: center; /* Center items horizontally */
  }

.project_404 {
    width: 512px; /* Adjust width as needed */
    height: 512px; /* Adjust height as needed */
    background-image: url('../../images/404.png'); /* URL to your image */
    background-size: contain; /* Resize the background image to fit within the container */
    background-position: center top; /* Center the background image horizontally and align it to the top */
    margin: 0 auto; /* Center the container horizontally */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
  }