body {
  margin: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
}

.top-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  padding: 16px;
  font-size: 13px;
}

.top-right a {
  color: #202124;
  text-decoration: none;
}

.top-right a:hover {
  text-decoration: underline;
}

.icon {
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.icon:hover {
  background: #f1f3f4;
}

.icon svg {
  width: 20px;
  height: 20px;
  fill: #5f6368;
}

.signin {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 9px 16px;
  border-radius: 18px;
  cursor: pointer;
}

.center {
  height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.logo{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 88px;
  font-weight: 700;
  letter-spacing: -2px;
  margin: 0 0 20px;
  line-height: 1;
  text-align: center;
}

.logo .b  { color: #4285f4; } /* G blue */
.logo .r  { color: #ea4335; } /* o red */
.logo .y  { color: #fbbc05; } /* o yellow */
.logo .b2 { color: #4285f4; } /* g blue */
.logo .g  { color: #34a853; } /* l green */
.logo .r2 { color: #ea4335; } /* e red */


.searchbar {
  width: min(580px, 92vw);
  height: 46px;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}

.searchbar:hover {
  box-shadow: 0 1px 6px rgba(32,33,36,.28);
  border-color: transparent;
}

.search-icon svg {
  width: 20px;
  height: 20px;
  fill: #9aa0a6;
}

.searchbar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
}

.buttons {
  display: flex;
  gap: 12px;
}

.buttons button {
  background: #f8f9fa;
  border: 1px solid transparent;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.buttons button:hover {
  border-color: #dadce0;
}
