body {
  background-color: #eeeeee;
}

html {
  scroll-behavior: smooth;
}

.pa-logo {
  display: flex;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.pa-logo-img-1 {
  display: none;
}

/* white box position */

.content {
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 0 auto;
  background-color: #ffffff;
  max-width: 850px;
  /* optimal blog size 600px-750px */
  margin-bottom: 2rem;
  border-radius: 28px;
  color: #222222;
  font-family: Georgia, "Times New Roman", Times, serif;
  box-sizing: border-box;
}

/* general content style */

/*quotes*/
h1 {
  /* font-size: 28px; */
  font-size: clamp(24px, 5vw, 32px);
  text-align: center;
  margin: 3rem 0 3rem 0;
  color: #222222;
  font-family: "Playfair Display", Impact, Haettenschweiler, "Arial Narrow Bold",
    sans-serif;
}

/*heading title*/
h3 {
  /*   font-size: 20px; */
  font-size: clamp(20px, 4vw, 24px);
  text-align: center;
  font-weight: 100;
  text-transform: uppercase;
  text-wrap: wrap;
  font-family: "Playfair Display", Impact, Haettenschweiler, "Arial Narrow Bold",
    sans-serif;

}

/*sub-heading title*/

h4 {
  /* font-size: 18px; */
  font-size: clamp(20px, 2vw, 22px);
  font-family: "Playfair Display", Impact, Haettenschweiler, "Arial Narrow Bold",
    sans-serif;
}

.hashtag {
  font-size: 18px;
  color: #a9a9a9;

}

p {
  /*   font-size: 16px; */
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.5;
  color: #222222;
  font-family: Georgia, 'Times New Roman', Times, serif;

}

mark {
  background-color: lightyellow;
  font-weight: bold;
}

.dashed-line {
  text-align: center;
  color: #222222;
  font-size: 20px;
}

/*social sharing call to action*/

.follow-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: red;
}

.follow-us p {
  color: #a9a9a9;
}

.fa-brands,
fa-instagram {
  font-size: 2rem;
  color: #a9a9a9;
  cursor: pointer;
  margin-bottom: 3rem;
  transition: 0.3s;
}

.fa-instagram:hover {
  color: #833ab4;
  transform: scale(1.1);
}

/* go back button */

.go-back-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 2rem;
}

.go-back-box-1 {
  display: none;
}

.go-back {
  text-wrap: nowrap;
  background-color: transparent;
  border: none;
  color: #222222;
  font-family: "Playfair Display", Impact, Haettenschweiler, "Arial Narrow Bold",
    sans-serif;
  font-size: 18px;
  transition: 0.3s;
}

.go-back:hover {
  font-size: 20px;
  text-decoration: underline;
}

.go-back a {
  text-decoration: none;
  color: #222222;
}

.fa-arrow-left {
  margin-right: 8px;
}

/*highlithing*/

/* mark{
  background-color: aqua;
} */



/*small laptops or windows*/
@media only screen and (max-width: 992px) {
  .content {
    /*     background-color: lightblue; */
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*large ihpones*/
@media only screen and (min-width: 415px) and (max-width: 600px) {
  .content {
    /*     background-color: lightgreen; */
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


/*standard iphones*/
@media only screen and (min-width: 375px) and (max-width: 415px) {
  .content {
    /*     background-color: lightpink; */

    padding-left: 1rem;
    padding-right: 1rem;
  }
}