* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: rgb(202, 199, 199);
}

.logo {
  width: 200px;
  height: 200px;
  max-width: 100%;
  margin:0 auto;
  margin-top: 15px;
}

h1 {
  text-align: center;
  font-weight: 600;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
}

.search-container {
  position: relative;
  width: 80%;
}

.search {
  width: 100%;
  height: 50px;
  outline: none;
  font-size: large;
  font-weight: 900;
  border: 2px solid #1434a4;
  padding: 0 10px;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

img {
  width: 100%;
  height: 350px;
  display: block;
  border-radius: 15px;
  margin-bottom: 10px;
  transition: 0.4s ease;
}

img:hover {
  transform: scale(1.1);
}
