@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap");

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

body {
  font-family: "Poppins", sans-serif;
}

.section {
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(134deg, #fcc6c6, 45%, gray);
}

.container {
  width: 80%;
  display: block;
  margin: auto;
  padding-top: 100px;
}

.content-section {
  float: left;
  width: 55%;
}

.image-section {
  float: right;
  width: 40%;
}

.image-section img {
  width: 100%;
  height: auto;
}

.content-section .title {
  text-transform: uppercase;
  font-size: 28px;
}

.content-section .content h3 {
  margin-top: 20px;
  color: #5d5d5d;
  font-size: 21px;
}

.content-section .content p {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.content-section .content .button {
  margin-top: 30px;
}

.content-section .content .button a {
  background-color: #3d3d3d;
  padding: 12px 40px;
  text-decoration: none;
  color: #fff;
  font-size: 25px;
  letter-spacing: 1.5px;
  border-radius: 8px;
}

.content-section .content .button a:hover {
  background-color: #2b2828;
  transition: all 0.3s;
  color: #fff;
}

.content-section .social {
  margin-top: 40px;
}

.content-section .social img {
  font-size: 30px;
  padding: 0px 10px;
  cursor: pointer;
}

.content-section .social img:hover {
  border-radius: 50%;
  color: rgb(201, 182, 182);
}

.button-back a {
  background-color: #3d3d3d;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1.5px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.button-back a:hover {
  background-color: #0d202b;
  transition: 0.3s;
}

/* RESPONSIVE FOR MOBILES */
@media (max-width: 768px) {
  .container {
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 50px;
  }

  .content-section {
    float: none;
    width: 100%;
    display: block;
    margin: auto;
  }

  .content h3 {
    text-align: center;
  }

  .content p {
    text-align: center;
  }

  .image-section {
    float: none;
    width: 100%;
    display: block;
    margin: auto;
    margin-top: 50px;
  }

  .content-section .title {
    text-align: center;
    font-size: 19px;
  }

  .content-section .content .button {
    text-align: center;
  }

  .content-section .content .button a {
    padding: 9px 30px;
  }

  .content-section .social {
    text-align: center;
  }

  .button-back a {
    display: flex;
    align-items: center;
    text-align: center;
  }
}
