body {
  margin: 0;
  padding: 0;
}

.results-nav-wrapper {
  display: flex;
  padding: 20px;
}

.nav-logo {
  flex: none;
  width: 100px;
}

.nav-search-form {
  flex: 1;
}

@media screen and (max-width: 900px) {
  .nav-search-form form {
    display: none;
  }
}

.nav-profile {
  flex: none;
}

.mobile-nav-search-form {
  display: none;
}

@media screen and (max-width: 900px) {
  .mobile-nav-search-form {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.navigation-menu-wrapper {
  display: flex;
  padding: 20px;
}

.navigation-menu-space {
  flex: none;
  width: 100px;
}

@media screen and (max-width: 900px) {
  .navigation-menu-space {
    display: none;
  }
}

.navigation-menu {
  display: flex;
}

.navigation-menu-item {
  margin-right: 10px;
}

.mobile-nav-search-form input {
  width: 78%;
}

.mobile-nav-search-form button {
  width: 20%;
}

.results-content-wrapper {
  display: flex;
  padding: 20px;
}

.results-content {
  flex: none;
  width: 640px;
  margin-left: 100px;
}

@media screen and (max-width: 900px) {
  .results-content {
    width: 100%;
    margin-left: 0px;
  }
}

.results-title-header {
  margin-bottom: 0px;
}

.results-title {
  text-decoration: none;
}

.results-title:hover {
  text-decoration: underline;
}

.results-url-container {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.images-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.image-content {
  width: 250px;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 5px 5px grey;
}

@media screen and (max-width: 900px) {
  .image-content {
    width: 100%;
  }
}

.image-thumbnail-wrapper {
  height: 200px;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .image-thumbnail-wrapper {
    height: auto;
  }
}

.image-thumbnail {
  max-height: 100%;
}

@media screen and (max-width: 900px) {
  .image-thumbnail {
    max-height: none;
    width: 100%;
  }
}

.results-footer {
  display: flex;
  justify-content: center;
  padding: 20px;
}
