html,
body {
  max-height: 100vh;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.Hero,
.MeieTiim,
.Pood,
footer {
  scroll-margin-top: 70px;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  width: 100vw;
  background-color: #3b2f2f;
  height: 70px;
}
nav a {
  color: #c0a080;
  text-decoration: none;
  font-family: 'Lacquer', system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
}
.NavbarHyper a {
  font-size: 18px;
}

.NavbarHyper {
  display: flex;
  gap: 4rem;
}

.NavbarOstaHyper {
  background-color: #c0a080;
  color: #3b2f2f;
  font-size: 20px;
  padding: 0.3rem 0.5rem;
  border-radius: 7px;
}

.Hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #a67b5b;
  padding: 8rem;
}
.Hero a,
.Hero p,
.Hero h1 {
  color: #3b2f2f;
  text-decoration: none;
  font-family: 'Lacquer', system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

.Hero h1 {
  color: #3b2f2f;
  text-decoration: none;
  font-family: 'Lacquer', system-ui;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
}

.TootePood {
  background-color: #c0a080;
  color: #3b2f2f;
  padding: 0.8rem 1rem;
  border-radius: 7px;
  font-size: 18px;
}

.MeieTiim {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #c0a080;
  padding: 8rem;
}
.MeieTiim img {
  height: 30rem;
}

.MeieTiim p {
  color: #3b2f2f;
  text-decoration: none;
  font-family: 'Lacquer', system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
}

.MeieTiim h1 {
  color: #3b2f2f;
  text-decoration: none;
  font-family: 'Lacquer', system-ui;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
}

.Kirjeldus {
  max-width: 40%;
  max-height: 15rem;
}

.Pood {
  background-color: #79563e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20rem;
  padding: 8rem;
}

.Ost {
  max-width: 35%;
}

.Pood p {
  color: #c0a080;
  text-decoration: none;
  font-family: 'Lacquer', system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}
.Pood h1 {
  color: #c0a080;
  font-family: 'Lacquer', system-ui;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
}
.OstuNupp {
  background-color: #c0a080;
  text-decoration: none;
  color: #3b2f2f;
  padding: 0.8rem 1rem;
  border-radius: 7px;
  font-family: 'Lacquer', system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #3b2f2f;
  padding: 1.5rem;
}

footer a {
  color: #c0a080;
  text-decoration: none;
  font-family: 'Lacquer', system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
}
.FooterHyper a {
  font-size: 18px;
}

.FooterLogoImg {
  display: flex;
  align-items: center;
}

.FooterHyper {
  display: flex;
  gap: 4rem;
}

.FooterOstaHyper {
  background-color: #c0a080;
  color: #3b2f2f;
  font-size: 20px;
  padding: 0.3rem 0.5rem;
  border-radius: 7px;
}

footer img {
  height: 5rem;
}

img {
  height: 20rem;
}

.HeroTassPilt {
  display: inline-block;
  transition: transform 0.2s;
}

.HeroTassPilt:hover {
  animation: shakeOnce 0.6s ease-in-out forwards;
}

@keyframes shakeOnce {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  20% {
    transform: translateX(-5px) rotate(-3deg);
  }
  40% {
    transform: translateX(5px) rotate(3deg);
  }
  60% {
    transform: translateX(-5px) rotate(-2deg);
  }
  80% {
    transform: translateX(5px) rotate(2deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
