@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff") format("woff");
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

h1 {
  color: #d95017;
  font-size: 26px;
}

p {
  padding-bottom: 10px;
}

section {
  padding: 0 20px;
  flex: 1;
}

.container {
  max-width: 1220px;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: row;
}

.text-wrapper {
  display: flex;
  justify-content: center;
  flex: 1;
  flex-direction: column;
}

  .text-wrapper h1 {
    font-size: 4rem;
    margin: 0;
  }

.big-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  height: 100%;
}

  .big-image-wrapper img {
    width: auto;
    height: 100%;
    max-height: 500px;
  }

.checkbox {
  background-color: #F9E4DC;
  padding: 20px;
  width: 70%;
}

@media (max-width: 1024px) {
  .container {
    flex-direction: column;
  }

  .text-wrapper h1 {
    font-size: 3rem;
  }
}

footer {
  background-color: #3e3e40;
  color: #fff;
  height: 80px;
}

  footer .container {
    min-height: 80px;
  }

  footer .row {
    min-height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  footer .footer-left {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    font-size: 0.8rem;
  }

    footer .footer-left ul {
      list-style: none;
      display: inline-flex;
    }

      footer .footer-left ul li a {
        color: white;
        text-decoration: none;
        padding-left: 10px;
        padding-right: 10px;
      }

        footer .footer-left ul li a:hover {
          color: white;
        }

      footer .footer-left ul li::after {
        content: "|";
        display: inline-block;
      }

      footer .footer-left ul li:last-child::after {
        content: none;
      }

  footer .footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: row;
  }

    footer .footer-right .footer-text {
      font-size: 0.8rem;
    }

    footer .footer-right .logo {
      margin-right: 10px;
    }

@media (max-width: 650px) {
  footer {
    height: 100px;
  }

    footer .container {
      min-height: 100px;
    }

    footer .row {
      min-height: 100px;
      flex-direction: column;
      justify-content: flex-start;
    }
}

@media (max-width: 1024px) {
  footer {
    margin-top: 40px;
  }
}
