* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.absoluteads {
  @media (min-width: 800px) {
    .product-top-left {
      position: fixed;
      top: 100px;
      left: 50px;
      color: black;
    }
    .product-top-right {
      position: fixed;
      top: 100px;
      right: 50px;
      color: black;
    }
    .product-bottom-left {
      position: fixed;
      bottom: 50px;
      left: 50px;
      color: black;
    }
    .product-bottom-right {
      position: fixed;
      bottom: 50px;
      right: 50px;
      color: black;
    }
}
}

body {
  background: white;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  min-height: 100vh;
  @media (max-width: 650px) {
    margin-top: 40px;
  }
}

footer {
  margin-top: 150px;
  width: 100%;
  font-size: 13px;
  text-align: center;
}

.container {
  width: 100%;
  margin: 0 auto;
}

header {
  color: white;
  border-radius: 12px;
  padding: 50px;
  text-align: center;
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  @media (max-width: 650px) {
    flex-direction: column;
    gap: 20px;
  }
}

.title h1 {
  font-size: 3rem;
  color: #252530;
  font-weight: 700;
  line-height: 3rem;
}

.title p {
  font-size: 1.2rem;
  color: #252530;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.cta-button {
  background-color: #00A300;
  max-width: 220px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  padding: 15px;
  border: none;
  border-radius: 4px;
  color: white;
  border: 1px solid lightgray;
  text-decoration: none;
  margin-bottom: 50px;
}

.button:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.info {
  font-size: 1.2rem;
  color: #2b2e4a;
  margin-bottom: 10px;
}

.blog {
      padding: 0px 20px 20px 20px;
      max-width: 940px;
      margin: 0 auto;
  }
  .blog h1, .blog h2 {
      margin-bottom: 10px;
      margin-top: 30px;
  }
  .back {
    font-size: 1.2rem;
    text-decoration: none;
  }
  .back-hide {
    visibility: hidden;
  }
