/* Reset default margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    width: 100%;
    font-family: 'Arial', sans-serif;
  }
  
  .background {
    background: url('ai_logo.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Centered content */
  .content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
  }
  
  .content h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  .menu {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
  }

  .menu-toggle {
    font-size: 2rem;
    color: rgb(0, 0, 0);
    cursor: pointer;
  }

  .menu-items {
    min-width: 160px;
    display: none;
    list-style: none;
    position: absolute;
    top: 2.5rem;
    left: 0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  }

  .menu-items li {
    margin: 0.5rem 0;
  }

  .menu-items a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1rem;
  }

  .menu:hover .menu-items {
    display: block;
  }

  body.about-page {
    background-image: url('ml_background.png');
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 1900px auto;
    background-attachment: scroll;
    background-color: #ffffff;
  }

  .about-wrapper {
    color: #000000;
    padding-top: 8rem;
    padding-right: 2rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    text-align: left;
  }

  .about-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
  }

  .about-wrapper p {
    margin-bottom: 1.5rem;
  }

  .contact {
    margin-top: 3rem;
    text-align: left;
    font-size: 1rem;
  }

  .contact a {
    color: #4dc2ff;
    text-decoration: underline;
  }
