body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
header {
  border-bottom: 4px solid #003049;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.title {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  align-items: center;
}
.title img {
  width: 55px;
  height: 55px;
  background-color: #fdf0d5;
  padding: 5px;
  border-radius: 10px;
}
h1 {
  font-family: 'Pacifico';
  color: #003049;
  font-size: 42px;
}
.search-input {
  position: relative;
  box-sizing: border-box;
}
input {
  width: 315px;
  height: 30px;
  border-radius: 20px;
  padding: 5px 70px 5px 15px;
  border: 2px solid #fdf0d5;
  font-family: 'Open sans';
  outline: none;
}
input:focus {
  box-shadow: 0 0 6px #003049;
  border-color: #fff;
}
#icon-search {
  position: absolute;
  right: 9px;
  top: 9px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
#icon-search:hover {
  transform: scale(1.3);
}
#icon-delete {
  position: absolute;
  top: 9px;
  right: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: none;
}
#icon-delete:hover {
  transform: scale(1.3);
}

main {
  flex-grow: 1;
  overflow-y: auto;
}
.images-wrapper {
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  row-gap: 15px;
  cursor: pointer;
}
.images-wrapper .image {
  width: 380px;
  height: 230px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 7px;
}

#btn-more {
  display: block;
  margin: 0 auto;
  margin-bottom: 25px;
  width: 105px;
  height: 35px;
  background-color: #fff;
  border: 2px solid #fdf0d5;
  border-radius: 20px;
  font-family: 'Open sans';
  color: #003049;
  font-size: 16px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

#btn-more:hover {
  transform: scale(1.1); 
}

footer {
  height: 10vh;
  background-color: #fdf0d5;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.github {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}
.rsschool {
  width: 100px;
  transition: transform 0.3s ease;
}
.github:hover,
.rsschool:hover {
  transform: scale(1.1); 
}
.footer_year {
  font-family: 'Pacifico';
  font-size: 20px;
  color: #003049;
  letter-spacing: 2.2px;
  margin-left: 60px;
}