* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Product Sans Bold";
  src: url("product_sans_bold.ttf");
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
  color: #eeeeee;
  background-color: rgb(32, 32, 37);
}
.navbar {
  height: 4rem;
  width: 100%;
  gap: 2rem;
}
.nav-items {
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 1rem;
  margin-top: 1rem;
}
#profile-image {
  height: 1rem;
  width: 1rem;
}

.fa-solid {
  font-size: 18px;
}

.container {
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-top: 10rem;
  justify-content: center;
  align-items: center;
}

.search-bar {
  height: 3rem;
  width: 35rem;
  display: flex;
  border-radius: 2rem;
  margin: auto;
  margin-top: 2rem;
  background-color: rgb(136, 140, 141);
  opacity: 0.3;
}

.search-bar .fa-solid {
  margin: 1rem;
  color: #ffffff;
}

.search-bar:hover {
  opacity: 0.5;
}

.icons-left,
.icons-right {
  display: flex;
}

.icons-left {
  justify-content: start;
  width: 80%;
}
.icons-right {
  width: 20%;
  justify-content: end;
}

h2 {
  font-size: 500%;
  margin: auto;
  font-weight: 600;
  font-family: "Product Sans";
}

.lang-color {
  color: rgb(57, 123, 223);
}

footer {
  background-color: rgb(18, 18, 19);
  display: flex;
  flex-direction: column;
  height: 6rem;
}

.location {
  margin: 1rem;
}

.buttons {
  display: flex;

  margin-top: 1.5rem;
  margin-bottom: 3rem;
  gap: 1rem;
}
input {
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  width: 90%;
}
.lang-color:hover {
  text-decoration: underline;
  cursor: pointer;
}

.container button {
  width: 8rem;
  height: 2rem;
  color: #eeeeee;
  background-color: rgb(59, 57, 57);
  border-style: none;
  border-radius: 0.25rem;
}

.buttons button:hover {
  /* outline: #eeeeee; */
  border: 0.05rem #eeeeee solid;
  cursor: pointer;
}

.bottom-nav {
  display: flex;
  flex-direction: row;
}

.bottom-nav-left,
.bottom-nav-right {
  display: flex;
  gap: 2rem;
  margin: 1rem 1rem 0rem 1rem;
  width: 50%;
}

.bottom-nav-right {
  justify-content: end;
}
.bottom-nav-left {
  justify-content: start;
}

p:hover {
  text-decoration: underline;
  cursor: pointer;
}
.line {
  width: 100%;
  height: 0.05rem;
  background-color: #a19d9d;
  opacity: 0.5;
}

span {
  font-size: 14px;
  color: #e6e1e1;
}
