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

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

header {
  display: flex;
  flex-direction: column;
  min-height: 30vh;
  justify-content: center;
  align-items: center; }
  header h2 {
    padding: 2rem;
    font-size: 28px; }
    header h2 span {
      background-color: #4a4483;
      color: white;
      padding: 1px 5px;
      border-radius: 4px; }

#logo {
  padding: 2rem;
  text-decoration: none;
  color: #4a4483; }

.search-form {
  padding: 2rem;
  display: flex; }
  .search-form input {
    font-size: 2rem;
    padding: 0.5rem;
    width: 100%;
    border: 2px solid #4a4483; }
  .search-form button {
    border: none;
    background-color: #4a4483;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    color: white; }

.photo-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #626262;
  margin-bottom: 5px; }
  .photo-info a {
    color: #626262; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  padding: 2rem 0rem;
  width: 85%;
  margin: auto;
  grid-column-gap: 3rem;
  grid-row-gap: 5rem; }

.gallery-img {
  width: 100%;
  height: 100%; }

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

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

.more {
  padding: 1rem 3rem;
  background-color: #4a4483;
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer; }
