@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: url("assets/background.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.wrapper {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 6px 12px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
}

.navbar a:hover {
  text-decoration: underline;
}

.menu-icon {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-icon svg {
  width: 15px;
  cursor: pointer;
}

.menu-icon:hover {
  background: rgba(255, 255, 255, 0.08);
}

.avatar {
  width: 35px;
  margin-top: 5px;
  border-radius: 50px;
}

.section {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

#logo {
  color: white;
  font-size: 5rem;
  font-weight: 500;
}

.search-field {
  width: 60%;
  max-width: 550px;
  padding: 12px 20px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.45);
}

.search-icon {
  width: 18px;
  margin-right: 20px;
}

.field-text {
  display: inline-block;
  max-height: 25px;
  color: #333;
  font-weight: 300;
  font-size: 1rem;
  overflow: hidden;
}

.microphone-icon {
  width: 18px;
  margin-left: 20px;
}

.edit-icon {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.edit-icon svg {
  width: 15px;
  cursor: pointer;
}

.edit-icon:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media screen and (min-width: 800px) {
  .microphone-icon {
    margin-left: 80px;
  }
}

@media screen and (min-width: 1100px) {
  .microphone-icon {
    margin-left: 120px;
  }
}
