* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "arial", sans-serif;
}

body {
  font-size: 62.5%;
  background-color: rgb(280, 280, 280);
}

header {
  /* display: flex;
  justify-content: flex-end;
  gap: 9.6rem; */
  margin: 3.5rem 0 0 0;
}

header .main-nav-list-google {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  list-style: none;
  align-items: center;

  text-decoration: none;
  text-align: center;
  gap: 1.5rem;
  margin: 2rem 0 0 2rem;
}
.main-nav-list-google a {
  /* list-style: none; */
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
  font-size: 1.3rem;

  letter-spacing: 0;
}
.main-nav-list-google a .main-nav-link-google :hover {
  text-decoration: double;
}
li:first-child {
  grid-column: 27/28;
}

li:last-child {
  width: 100%;
}

.google-icon-app {
  width: 2.8rem;
  opacity: 60%;
  border-radius: 50%;
  color: #5f6368;
}

/* .google-icon-app:hover {
  background-color: #c3c3c3;
  padding: 5px;
} */

svg.gb_Ue {
  color: #5f6368;
  opacity: 1;
  fill: currentColor;
  cursor: pointer;

  width: 24px;
  border-radius: 50%;
}

svg.gb_Ue:hover {
  /* white-space: nowrap;
  overflow: hidden;
  border: 5px solid #f2f2f2; */
}

.main-nav-img {
  width: 3rem;
  border-radius: 50%;
  cursor: pointer;
}

section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-google {
  width: 40rem;
}

.icon-search {
  width: 2.4rem;
}

.icon-micro {
  width: 2.4rem;
}

section .main {
  width: 580px;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section .main .searchBx {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

section .main .searchBx .query-1 {
  width: 100%;
  padding: 13px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
  border-radius: 30px;
  padding-left: 50px;
  padding-right: 60px;
}

section .main .searchBx .icons {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  align-items: center;
  pointer-events: none;
}

.searchBtn {
  margin-top: 20px;
  padding: 12px 20px;
  color: #555;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid transparent;
  outline: none;
}

.searchBtn:hover {
  border: 1px solid #ccc;
}
