body {
  padding: 0;
  margin: 0;
  color: #1f1f1f;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff, #bebebe);
}
body #left {
  height: 1000px;
  position: fixed;
  left: 0;
  z-index: -1;
  transform: translate(-50%, 10%);
}
body #right {
  height: 1000px;
  position: fixed;
  right: 0;
  z-index: -1;
  transform: translate(80%, 10%);
}
body header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
body header #logo {
  max-width: 150px;
}
body header #title h1,
body header #title h3 {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  margin: 0;
}
body header #title h3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
body header #title h3:before, body header #title h3:after {
  margin: 0 10px;
  width: 50px;
  height: 2px;
  background: #000000;
  content: "";
}
body header #contact h3 {
  text-align: right;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-family: "Epunda Sans", sans-serif;
  font-weight: 400;
  margin: 0;
}
body header #contact h3 i {
  line-height: 25px;
}
body header #contact h3 a {
  color: #1f1f1f;
}
body main {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 10%;
}
body main img {
  width: 100%;
  max-width: 600px;
  border-radius: 2px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
body main h1,
body main h2,
body main h3,
body main h4 {
  text-align: center;
  font-family: "Epunda Sans", sans-serif;
  margin: 0;
  font-weight: 400;
}
body main #list {
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  justify-content: space-around;
  grid-gap: 15px;
  place-items: center;
}
body main #list div {
  place-self: center;
}
body main #list div h3 {
  height: 50px;
}
body main #list div img {
  width: 186px;
}
