* {
    box-sizing: border-box;
    margin: 10;
    padding: 10;
  }
  nav {
    background-color: #0d6a73;
    color: white;
    text-align: center;
    padding: 30px 0px;
}

nav ul {
    list-style-type: one;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin: 0 100px;
}

nav li a {
    color: white;
    text-decoration: none;
}

/* Header styles */
h1 {
    color: #debfbf;
    text-align: center;
    margin-top: 50px;
}

/* Quote styles */
.quote {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #e7f9bd;
}
  body {
    
    background: linear-gradient(to right, #06a78a, #ea36e4);
    font-family: 'Times New Roman', Times, serif;
  }
  
  h1 {
    text-align: center;
    color: rgba(255, 255, 255, 0.865);
    margin-top: 150px;
  }
  
  #search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }
  
  #search-input {
    width: 300px;
    height: 40px;
    border: none;
    border-radius: 20px;
    padding: 10px;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #search-button {
    width: 100px;
    height: 40px;
    border: none;
    border-radius: 20px;
    margin-left: 10px;
    color: #210606;
    background: #ffa96b;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #search-button:hover {
    background: #a81313;
    color: #f3eeee;
  }
  
  #image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 50px;
  }
  
  #image-container img {
    width: 400x;
    height: 250px;
    object-fit: cover;
    margin: 20px;
    border-radius: 5px;
    transition: transform 0.5s;
  }
  
  #image-container img:hover {
    transform: scale(1.1);
  }

  @media (max-width: 600px) {
    #search-input {
        width: 200px;
    }
  
    #search-button {
        width: 80px;
    }
  
    #image-container img {
        width: 200px;
        height: 150px;
    }
  }