@font-face {
  font-family: 'Gliker';
  src: url('../fonts/Gliker-Bold.woff2') format('woff2'),
        url('../fonts/Gliker-Bold.woff') format('woff'),
        url('../fonts/Gliker-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #493a3c;
  font-size: 16px;
  background-color: #cec7c4;
}

header, section, footer {
  display: flex;
  justify-content: center;
}

.container {
  width: 1170px;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}

h1, h2, h3 {
  font-family: "Gliker";
  font-weight: bold;
}

h1 {
  font-size: 44px;
}

header {
  background-color: #f58179;
}

header .container{
  background-image: url(../img/paw-paw.png);
  background-repeat: no-repeat;
  background-position-y: -420px;
  background-position-x: 480px;
}

header h1{
  margin-bottom: 10px;
} 

header p {
  font-size: 24px;
  margin-top: 0;
}

.header-img-wrapper {
  margin-left: -60px;
}

.header-content {
  width: 400;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 70px;
}

.header-socials {
  list-style: none;
  padding: 0;
  text-align: left;
  display: flex;
  margin: 0 auto 32px;
}

.header-socials li + li {
  margin-left: 32px;
}

.header-socials a {
  color: #493a3c;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.header-social-wrapper{
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 60%;
  background-color: #fff;
  margin-right: 15px;
}

.header-social-wrapper img{
  width: 48px;
  margin-top: -1px;
  margin-left: -1px;
}

.header-link-info{
  font-family: "Gliker";
  font-weight: bold;
  font-size: 26px;
  text-align: center;
}

.header-link-info a {
  color: #493a3c;
}

.about {
  background-color: #fed8d0;
}

.about-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 140px;
}

.about p{
  margin: 0;
}

.about-img-wrapper{
  width: 900px;
}

.about-img-wrapper img{
  width: 500px;
}

.disclaimer { 
  background-color: #f58179;
  padding: 80px 0;
}

footer {
  background-color: #cec7c4;
  padding: 40px 0 100px;
}

.footer-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.footer-logo-wrapper {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 600px;
}

.footer-logo-wrapper img{
  width: 124px;
  border-radius: 62px;
  margin-right: 30px;
}

.footer-socials {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
}

.footer-socials li {
  margin-left: 16px;
}

.footer-socials img{
  width: 80px;
  border-radius: 40px;
}


@media only screen and (max-width: 1199px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }

  .container {
    width: 700px;
  }

  h1 {
    font-size:36px;
  }

  .header-img-wrapper img {
    width: 380px;
  }

  header p {
    font-size: 18px;
  }

  header .container{
    background-position-y: -463px;
    background-position-x: 316px;
  }

  .header-content {
    width: 350px;
    margin-top: 60px;
    padding-right: 0;
  }

  .header-link-info {
    font-size: 20px;
  }

  .header-socials a{
    font-size: 18px;
  }

  .header-social-wrapper {
    width: 34px;
    height: 34px;
  }

  .header-social-wrapper img{
    width: 36px;
  }

  

  .about-text{
    padding-right: 40px;
    margin: 40px 0;
  }

  .about-img-wrapper {
    width: auto;
    display: flex;
    align-items: end;
  }

  .about-img-wrapper img{
    width: 300px;
  }

  .disclaimer{
    padding: 30px 0;
  }

  footer {
    padding: 30px 0;
  }

  .footer-logo-wrapper{
    font-size: 20px;
    width: 360px;
  }

  .footer-logo-wrapper img{
    width: 80px;
    margin-right: 20px;
  }

  .footer-socials img{
    width: 40px;
  }

  .footer-socials li{
    margin-left: 12px;
  }

}


@media only screen and (max-width: 720px) {
  .container{
    width: 320px;
    box-sizing: border-box;
    flex-direction: column;
  }

  header .container {
    background-position-y: -500px;
    background-position-x: 145px;
  }

  .header-img-wrapper{
    margin-left: 0;
    order: 2;
  }

  .header-img-wrapper img{
    width: 320px;
    margin-left: -15px;
  }

  .header-content{
    width: 100%;
  }

  .about-img-wrapper img{
    margin-left: -10px;
  }

  .footer-logo-wrapper{
    width: 100%;
  }

  .footer-wrapper{
    flex-direction: column;
    align-items: center;
  }
}