body {
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  overflow-x:hidden;
  margin: 0;
  padding: 0;
}

.socialicons {
  position: absolute;
  right: 50px;
}

i {
  color: white;
}

i:hover {
  color: #b8b8b8;
  cursor: pointer;
}

.searchForm-container {
  width: 100%;
  height: 100px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding-left: 50px;
  background-color: #333;
}

.searchForm {
  margin-left: 30px;
  display: flex;
  background-color: #292929;
  border: 1px solid #242424;
  border-radius: 4px;
}

.searchForm-input {
  background-color: #292929;
  border: none;
  height: 44px;
  width: 550px;
  padding: 5px 10px;
  color: white;
}

.icon {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: none;
  background-color: #292929;
}

.icon:hover {
  background-color: #1f1f1f;
}

.icon img {
  width: 22px;
  height: 22px;
}

.resultsContainer {
  width: 100%;
  max-width: 630px;
  margin-left: 100px;
  padding: 30px 20px;
}

.resultItem {
  margin-bottom: 30px;
  font-size: 0.8rem;
  line-height: 20px;
}

.resultItem-title {
  color: #1a0dab;
  font-size: 1.5rem;
  font-weight: 350;
  margin-top: 0;
  margin-bottom: 0;
}

.resultItem-title a {
  text-decoration: none;
}

.resultItem-title a:hover {
  text-decoration: underline;
}

.resultItem-link {
  color: #006621;
}

.resultItem-snippet {
  color: #545454;
  line-height: 18px;
}

.resultItem-snippet .searchmatch {
  font-weight: 700;
}

.errorMessage {
  font-size: 1.6rem;
  line-height: 2.8rem;
}

.errorMessage .keyword {
  font-weight: 700;
}

.moreResults {
  margin-left: 100px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 630px;
  padding-left: 20px;
}

.moreResults p {
  font-size: 1.8rem;
}

.moreResults-button {
  width: 100%;
  border: 1px solid #c3c3c3;
  background-color: #eee;
  color: #555;
  font-weight: 600;
  padding: 15px 0;
  font-size: 1rem;
  border-radius: 4px;
}

.moreResults-button:hover {
  background-color: #ccc;
}

.hidden {
  display: none;
}

@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width: 750px) {

  .resultsContainer,
  .moreResults {
    max-width: 90%;
    word-wrap: break-word;
    margin-left: 0;
  }

  .moreResults {
    width: 90%;
  }

  .searchForm-input {
    width: 100%;
    max-width: 150px;
  }
}