body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
input {
  padding: 12px 20px;
  border: none;
  outline: none;
  border-radius: 24px;
  flex: 1;
  font-size: 16px;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80.5vh;
  gap: 20px
}

.search-container {
  display: flex;
  align-self: center;
  border: 1px solid #d3d3d3;
  border-radius: 25px;
  padding: 4px 12px;
  max-width: 650px;
  width: 100%;
  justify-content: center;
}

.search-container:hover {
  box-shadow: 0 1px 6px #8f8f8f;
}
.material-symbols-outlined {
  display: flex;
  align-self: center
}
.buttons {
  display:flex;
}
.buttons button{
  border: 1px solid #ffffff;
  border-radius: 8px;
  cursor: pointer;
  margin: 22px 4px;
  margin-top: -5px;
  padding: 8px 22px;
  text-align: center;
  height: 34px;
  color: #525252;
  background-color: #f8f8f8;
}

.buttons button:hover {
  border-color: #e0e0e0;
}
.languages {
  font-size: 13px
}
.languages a {
  text-decoration: none;
}
.languages a:hover {
  text-decoration: underline;
}
footer {
    display: flex;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    background-color: #f2f2f2;
    flex-direction: column;
    align-content: between;
    bottom: 0;
    position:fixed;
    width: 100%;
}
footer a {
  text-decoration: none;
  color: #1f1f1f;
}
footer a:hover {
  text-decoration: underline;
}
.footer-main {
  display:flex;
  padding: 15px 20px;
}
.footertop {
  padding: 15px 30px;
  border-bottom: 1px solid #d2d2d2;
  font-size: 15px;
  color: #1f1f1f;
}
.footerbottom{
  display:flex;
  justify-content: space-between;
  padding: 0px 15px;
  width: 100%;
  font-size: 14px;
}
.footerbottom1,
.footerbottom2{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  bottom: 0;
}
.footerbottom1 {
  display:flex;
  gap: 30px
}
.footerbottom2{
  display: flex;
  gap: 30px
}
@media (max-width: 715px) {
  main {
    padding: 20px 20px;
  }
  .search-container {
    width: 90%;
  }
  .footerbottom {
    display: flex;
    font-size: 1.5vw;
    padding: 0 2px;
    justify-content: space-between;
    gap:px
  }
  .footerbottom1 {
    display:flex;
    justify-content: start;
  }
}
header {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 30px
}
header a {
  text-decoration: none;
  color: #1f1f1f;
}
.leftheader {
  display:flex;
  gap: 20px
}

.rightheader {
  display: flex;
  padding: 0px 0px;
  gap: 20px
}
header a:hover {
  text-decoration: underline;
}