:root {
  --text: #000000;
  --background: #fcf7f3;
  --primary: #ad6569;
  --secondary: #d2bfaa;
  --accent: #b9a57b;
}
* {
  margin: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  /* background-color: var(--background); */
  background-image: url(./bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.text-block,
.text-block-faq {
  background-color: var(--secondary);
  min-height: 20em;
  padding: 2em 100px;
  margin: 3em 8em;
  border-radius: 10px;
  box-shadow: 5px 5px 1em rgba(5);
}
.text-block:hover {
  animation: shake 4s ease;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.text-block h1,
.text-block-faq h1 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 10px;
}
.text-block p,
.text-block-faq p {
  font-size: 18px;
  text-align: center;
}
.text-block .imgs {
  display: flex;
  flex-flow: row wrap;
  gap: 1;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.text-block .imgs img {
  flex: 1 0 80px;
  max-width: 200px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
nav {
  display: flex;
  background-color: var(--secondary);
  box-shadow: 0px 2px 0.5em rgba(0, 0, 0, 0.25);
}
nav ul {
  display: flex;
  flex-direction: row;
}

nav ul li {
  list-style: none;
  width: 5em;
  height: 100%;
  background-color: var(--accent);
}
nav img {
  width: 100px;
}
nav ul li:hover {
  background-color: orange;
}
nav ul li a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  font-size: 20px;
}

.sock-img {
  width: 100px;
  height: 100px;
  position: fixed;
  top: -100%;
  z-index: 100;
}

.sock-img:nth-child(odd) {
  transform: rotateY(180deg);
}

.text-block-faq details {
  background-color: var(--accent);
  border: 1px solid var(--primary);
  padding: 1em 4em;
  border-radius: 10px;
  margin-bottom: 1em;
}
.text-block-faq details summary {
  cursor: pointer;
}
