@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-size: small;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

nav a {
  color: black;
  text-decoration: none;
}

.left-div {
  display: flex;
  gap: 1rem;
}
.right-div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.right-div img {
  border-radius: 50%;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 19%;
}

img {
  width: 272;
  height: 92;
}

.search-container {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 15px;
}

input {
  width: 50%;
  height: 2.5rem;
  padding-left: 40px;
  border-radius: 25px;
  background-image: url(./pics/glass.png);
  background-size: 2.5rem;
  background-repeat: no-repeat;
}

.btn-container {
  display: flex;
  margin-top: 1.5rem;
  gap: 1rem;
}

.button {
  width: 9rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.3rem;
}

footer {
  background-color: rgba(211, 211, 211, 0.364);
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

footer div {
  font-size: 1.1em;
  display: flex;
  padding: 20px;
  gap: 2rem;
}

footer a {
  color: black;
  text-decoration: none;
}
