@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

button {
  cursor: pointer;
  border: none;
  background: rgb(74, 68, 131);
  color: white;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
}

#logo {
  text-decoration: none;
  color: rgb(74, 68, 131);
}

.search-form {
  padding: 2rem;
  display: flex;
}

.search-input {
  padding: 0.5rem;
  font-size: 2rem;
  border: 2px solid rgb(74, 68, 131);
  width: 100%;
}

.search-btn {
  font-size: 1rem;
  padding: 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  width: 90%;
  margin: auto;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 3rem;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}
.gallery-info p,
.gallery-info a {
  color: gray;
}

.nav-button {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more {
  padding: 1rem 3rem;
  font-size: 1.2rem;
}

.nothing {
  display: none;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 400px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}/*# sourceMappingURL=style.css.map */