section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

section header {
  font-family: arial;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  top: 0;
  font-size: small;
}
section header ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
section header ul li {
  list-style: none;
  margin-left: 20px;
}
section header ul li a {
  text-decoration: none;
  color: #111;
  size: 13px;
}
section header ul li button {
  background: #4584ef;
  width: 700;
  outline: none;
  border: none;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
  padding: 8px 14px;
}
section .main {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section .main .SearchBox {
  position: relative;
  width: 100%;
  margin-top: 20px;
}
section .main .SearchBox .Search {
  width: 90%;
  padding: 13px;
  padding-left: 31px;
  /* padding-right: 60px; */
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-shadow: inset;
  font-family: Arial, Helvetica, sans-serif;
}
section .main .SearchBox .Icons {
  position: absolute;
  top: 0;
  width: 90%;
  display: flex;
  padding: 12px 20px;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
#MainPicture {
  width: 60%;
}
.Search:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

section .main .Buttons {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
section .main .Buttons button {
  margin: 0 5px;
  padding: 12px 20px;
  color: #555;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid transparent;
  outline: none;
}
#Google-Search {
  text-decoration: none;
  color: #555;
  transform: translateX(-50%);
}
