/* Page Styles */
@charset "utf-8";

/* Basic style for all elements */
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  line-height: 1.6;
  margin: 0 120px;
}

/* Header */
h1 {
  text-align: center;
}

/* Style search form */
form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

#searchBar {
  width: 100%;
  max-width: 500px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #bbb;
  font-size: 17px;
  color: #333;
}

#searchBtn {
  padding: 8px 16px;
  margin-left: 6px;
  border-radius: 4px;
  border: none;
  background-color: rgb(42, 81, 234);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}

/* Style results */
.results {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1600px;
}

.result {
  width: 27%;
  height: 100%;
  margin: 16px;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.result img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.result a {
  text-decoration: none;
  color: #666;
  display: block;
  margin-top: 10px;
}
