* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 100svh;
  height: 100%;
  max-width: 100vw;
  width: 100%;
  overflow: hidden;
  position: absolute;
}

.flyer {
  display: grid;
  grid-template-columns: 20vw 2fr;
  grid-template-rows: repeat(2, 1fr);
  width: 100vw;
  height: 100%;
  overflow: hidden;
  padding-top: 5vh;
}

.flyer__sidebar {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 10px;
}

.flyer__logo {
  width: 80%;
}

.flyer__divisor {
  border-left: 0.1px solid #0007;
  height: 60%;
  width: 1px;
  margin: 0px auto 15vh auto;
}

.flyer__brand {
  font-size: 0.875rem;
  color: #666;
  transform: rotate(-90deg);
  height: fit-content;
  width: 100%;
}

.flyer__main {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.flyer__image-section {
  position: relative;
  height: 60%;
  width: 80%;
  margin-right: 20%;
}

.flyer__image {
  width: 100%;
  height: auto;
  display: block;
  z-index: 9;
  position: relative;
}

.flyer__tag {
  position: absolute;
  bottom: 20%;
  left: 0;
  background-color: #fff;
  padding: 10px;
  color: #000;
  width: 28ch;
  z-index: 10;
  box-shadow: 0 0 10px 5px #666;
}

.flyer__content {
  background-color: #000;
  color: #fff;
  padding: 5% 10%;
  text-align: left;
  height: 50%;
  width: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 0;
}

.flyer__content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75vh;
  background-color: #000;
  mix-blend-mode: multiply;
}

.flyer__title {
  font-size: 3rem;
  letter-spacing: 2px;
  font-weight: 300;
  z-index: 1;
}

.flyer__title::before {
  content: "";
  position: absolute;
  bottom: 55%;
  width: 2.5ch;
  height: 10px;
  background-color: #fff;
}

.flyer__text {
  font-size: 0.875rem;
  line-height: 1.5;
  z-index: 1;
}

.flyer__footer {
  grid-column: 2 / 3;
  grid-row: 3 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: right;
  padding: 10px 10%;
}

.flyer__footer-text {
  font-size: 1rem;
  color: #666;
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.flyer__footer-text svg {
  height: 30px;
}

.flyer__main-lines {
  position: absolute;
  top: 15vh;
  left: 30vw;
  rotate: -75deg;
  display: flex;
  height: 55vh;
  width: 25vw;
  justify-content: space-evenly;
  align-items: center;
}

.flyer__line {
  position: relative;
  height: 100%;
  width: 5px;
  background-color: #fff;
}
