nav, li, a {
    display: inline;
    font-size: 15px;
    color: black;
    text-decoration: none;   
    margin:5px;
    float:right;
}
a:hover {
    text-decoration: underline;
}

body {
      background-color: #fff;
      font-family: Arial, sans-serif;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }

img {
    max-width: 45%;
    height:auto;
    margin-bottom: 25px;
}

.nav-image {
    width: 25px;
    height: 25px;
    margin-left: 20px;
    cursor: pointer;
    padding:5px;
}

   .search-container {
      text-align: center;
    }

    .search-box {
      width: 500px;
      padding: 12px 20px;
      font-size: 16px;
      border: 1px solid #dfe1e5;
      border-radius: 24px;
      box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
      outline: none;
      transition: box-shadow 0.2s ease-in-out;
    }

    .search-box:focus {
      box-shadow: 0 1px 8px rgba(32, 33, 36, 0.4);
    }

    .search-buttons {
      margin-top: 20px;
    }

    .search-button {
      background-color: #f8f9fa;
      border: 1px solid #f8f9fa;
      border-radius: 4px;
      padding: 10px 20px;
      margin: 5px;
      font-size: 14px;
      cursor: pointer;
    }

    .search-button:hover {
      border: 1px solid #c6c6c6;
    }

    .icon-bar {
        position: absolute;
        top: 20px;
        right:20px;
        display:flex;
        gap:15px;
    }