@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: rgb(32, 33, 36);
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #bdc1c6;
}

/* Header */
li,
a {
  text-decoration: none;
  list-style: none;
  outline: none;
  color: #bdc1c6;
}
header {
  padding: 10px;
}
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left-side {
  display: flex;
  align-items: center;
  margin-left: 15px;
  cursor: pointer;
}
.left-side * {
  margin-right: 10px;
}
.left-side a:hover {
  text-decoration: underline;
}
.right-side {
  display: flex;
  align-items: center;
}
.right-side * {
  margin-right: 5px;
  color: #fff;
}
.icons {
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.app {
  margin-top: 5px;
}
.profile {
  border-radius: 50%;
  margin-bottom: -5px;
}

/* Logo */
.logo {
  text-align: center;
  height: 100%;
  margin-top: 80px;
}
#logo {
  padding-top: 80px;
}
form {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 5px 8px 0 16px;
  margin: 0 auto;
  width: 460px;
  height: 46px;
  border-radius: 24px;
  box-shadow: none;
  border: 1px solid #5f6368;
  background-color: #202124;
  color: #bdc1c6;
  outline: none;
  margin-top: 20px;
  font-size: 15px;
}
form:hover,
form:focus {
  background-color: #303134;
  box-shadow: 0 1px 6px 0 #171717;
  border-color: rgba(223, 225, 229, 0);
}
.voice {
  padding-left: 8px;
  cursor: pointer;
  background: transparent;
  outline: none;
  align-items: center;
}
.lupe {
  padding-right: 8px;
  cursor: pointer;
  align-items: center;
  background: transparent;
  outline: none;
}
input[type="text"] {
  background-color: transparent;
  border: none;
  width: 370px;
  font-size: 16px;
  outline: none;
  height: 34px;
  color: #bdc1c6;
}

/* Buttons */
.buttons {
  margin-top: 20px;
  text-align: center;
}
button {
  background-color: #303134;
  border: 1px solid #303134;
  border-radius: 4px;
  font-size: 14px;
  color: #e8eaed;
  margin: 11px 4px;
  padding: 10px 16px;
  text-align: center;
  outline: none;
  cursor: pointer;
}
button:hover {
  background-color: #303134;
  border: 1px solid #5f6368;
  color: #e8eaed;
}

/* Language Option */
.translate {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: small;
  margin-top: 22px;
}
.translate a {
  padding: 0 5px;
  color: #a0b7f6;
  text-decoration: none;
}

/* Footer */
footer {
  background: #171717;
  display: block;
  color: rgba(255, 255, 255, 0.54);
  position: absolute;
  bottom: 0;
  width: 100%;
}
.germany {
  padding: 15px 30px;
  border-bottom: 1px solid #212327;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.54);
}
.links {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  justify-content: space-evenly;
}
.top {
  padding: 15px;
  white-space: nowrap;
}
.bottom {
  padding: 15px;
  white-space: nowrap;
}
.footer a {
  text-decoration: none;
  padding: 15px;
  color: #999da2;
}

/* Media Query */
@media (min-width: 505px) {
  .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  form {
    width: 570px;
  }
  input[type="text"] {
    width: 480px;
    margin-right: -120px;
  }
  .voice {
    margin-left: 120px;
  }
}
