:root {
  font-family: Helvetica, sans-serif;
  --lightOrangeColor: #E58C00;
  --mainOrangeColor: #D57C00;
  --lightGreyColor: #B5B5B5;
  --darkGreyColor: #373330;
  --mainWhiteColor: #F3EEEB;

  background: var(--darkGreyColor);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: auto;
  width: 90%;
}

.centerText {
  text-align: center;
  display: block;
}

h1, h2, h3 {
  font-weight: bold;
  color: var(--mainOrangeColor);
}

h1 {
  font-size: 2rem;
  @media screen and (min-width: 768px) {
    font-size: 2.5rem;
  }
  @media screen and (min-width: 1024px) {
    font-size: 3rem;
  }
}

h3 {
  margin-bottom: 0;
}

article.mainImage>svg {
  height: 400px;
  polygon {
    fill: var(--lightOrangeColor);
    stroke: var(--mainWhiteColor);
    stroke-width: 1px;
    stroke-miterlimit: 10;
  }
}

h2,
article.subImage h3 {
  font-size: 1.4rem;
  @media screen and (min-width: 768px) {
    font-size: 1.7rem;
  }
  @media screen and (min-width: 1024px) {
    font-size: 2rem;
  }
}

a,
a>svg {
  color: var(--mainOrangeColor);
  fill: var(--mainOrangeColor);
  transition: 0.2s ease-in-out;
  font-size: 1rem;
  @media screen and (min-width: 768px) {
    font-size: 1.1rem;
  }
  @media screen and (min-width: 1024px) {
    font-size: 1.2rem;
  }
}

a:hover,
a:active {
  color: var(--mainWhiteColor);

  svg {
    fill: var(--mainWhiteColor);
  }
}

article.mainTitle {
  h1,h2 {
    margin-bottom: 0;
  }
}

article.flyer img {
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  width: 100%;
  @media screen and (min-width: 768px) {
    max-width: calc(50% - 3px);
  }
}

article.contact,
article.download {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1rem;
  @media screen and (min-width: 768px) {
    gap: 3rem;
    flex-direction: row;
  }

  a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.25rem 0.5rem;
    font-weight: bold;
  }
}


@media screen and (max-width: 768px) {
  article.contact section {
    margin: 0 auto;
  }
}

article.contact section svg {
  height: 35px;
}
