/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
  --color-01: #fdfeff;
  --color-02: #b73a34;
  --color-03: #d8902a;
  --color-04: #733c2f;
}

html {
  scroll-behavior: smooth;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  font-size: 16px;
  background-color: var(--color-01);
  color: var(--color-04);
  background-image: url(../../assets/pattern.webp);
  background-position: left -150px top -150px;
  background-repeat: no-repeat;
  background-size: 600px;
}
main {
  height: 100%;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10rem;
  padding-top: 7rem;
  padding-bottom: 2rem;
  width: 100%;
  height: 100%;
}
.content .brand {
  width: 100%;
  max-width: 350px;
}
.content .brand img {
  width: 100%;
  height: auto;
}

.content .text {
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin-top: 2rem;
}
.content .text h1 {
  color: var(--color-02);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 1rem;
}
.content .text p {
  font-weight: 300;
  margin-bottom: 1rem;
}
.content .contact {
  border: solid 1px var(--color-02);
  border-radius: 10px;
  padding: 2rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 600px;
}
.content .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: var(--color-02);
}
.content .contact-info img {
  margin-right: 0.3rem;
}
.content .contact-info a {
  color: var(--color-02);
  text-decoration: none;
}
.content .contact-info--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1rem;
}

.content .contact-info--row a {
  font-weight: 700;
  color: var(--color-02);
  text-decoration: none;
}

.content .footer {
  width: 100%;
  max-width: 280px;
  margin-top: 2rem;
}
.content .footer img {
  width: 100%;
  height: auto;
}

@media (max-width: 875px) {
  body {
    background-position: left -150px top -150px;
    background-repeat: no-repeat;
    background-size: 500px;
  }
  .content .contact-info--row .contact-info {
    margin-bottom: 0.5rem;
  }
  .content {
    padding: 2rem;
  }
}
@media (max-width: 664px) {
  body {
    background-position: left -250px top -85px;
    background-repeat: no-repeat;
    background-size: 500px;
  }
  .content .contact-info--row .contact-info {
    margin-bottom: 1rem;
  }

  .content .brand {
    max-width: 250px;
  }

  .content {
    padding: 1.3rem;
    padding-top: 5rem;
  }
  .content .contact {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content .contact-info--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 1.5rem;
  }
  .content .contact-info--row .contact-info {
    margin-bottom: 1.5rem;
  }
  .content .contact-info--row .contact-info:nth-last-child(1) {
    margin-bottom: 0rem;
  }
}