/* div {
  border: 1px solid red;
} */

.btn {
  margin: 1rem;
  display: flex;
  justify-content: space-around;
}

#show-more-btn {
  height: fit-content;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#show-more-btn:hover {
  background-color: #3e8e41;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  --font-family-page: 'Poppins', serif;
  --box-shadow-all: 0 0 10px rgba(0, 0, 0, 0.2);
  --border-rad: 6px;
}

body {
  font-family: var(--font-family-page);
  font-size: small;
}

header {
  background: black;
}

#text_container {
  color: white;
}

.nav-bar-on-small-screen {
  display: none;
}

.nav-bar-on-small-screen a {
  color: white;
  text-decoration: none;
}

.img-area {
  height: -webkit-fill-available;
}

.welcome-area {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.social-media-holder {
  width: 20%;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  box-shadow: var(--box-shadow-all);
  border-radius: var(--border-rad);
}

.social-media-holder-a {
  display: flex;
  flex-direction: row;
  margin: 1rem;
  align-items: center;
}

.social-media-holder-ab {
  width: 30%;
  margin-left: 0.5rem;
}

.social-media-holder-ac {
  display: flex;
  align-items: center;
}

.social-media-holder-ac a {
  color: white;
  text-decoration: none;
  margin: 1rem;
}

.most-visited-quotes {
  width: 45%;
  margin: 0.5rem;
  display: flex;
  flex-direction: row;
  box-shadow: var(--box-shadow-all);
  border-radius: var(--border-rad);
}

.most-visited-quotes div {
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}

.most-vist-quotes-links {
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow-all);
  border-radius: var(--border-rad);
}

.personality-of-the-week {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 30%;
  margin: 0.5rem;
  box-shadow: var(--box-shadow-all);
  border-radius: var(--border-rad);
}

.personality-of-the-week-holder {
  display: flex;
  height: -webkit-fill-available;
  flex-direction: column;
  align-items: center;
}

.personality-of-the-week-holder-img {
  width: 7rem;
  background-color: #f0f0f0;
  margin: 1rem;
}

.personality-of-the-week-holder-text {
  margin: 1rem;
}

#famous-quotes-img {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.other-quotes {
  display: flex;
  height: max-content;
  flex-direction: row;
  justify-content: space-evenly;
}

h1,
h2 {
  margin: 1rem;
}

.quote-links {
  display: flex;
  flex-direction: column;
  margin: 0.5rem;
  width: 33%;
}

.quote-links a {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  text-decoration: none;
  color: rgb(33, 69, 229);
}

.quote-links a:hover{
  text-decoration: underline;
}

.image-holder-child-div a {
  display: inline-block;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}

.image-holder-child-div img {
  width: 100%;
  height: inherit;
  display: block;
}

.image-holder-patent-div {
  display: flex;
  width: 18%;
  justify-content: center;
  margin: 0.5rem;
}

.image-holder-child-div {
  display: flex;
  justify-content: center;
  width: -webkit-fill-available;
  height: fit-content;
  position: relative;
}

@media (max-width: 960px) {
  .social-media-holder {
    width: 35%;
  }

  .personality-of-the-week {
    width: 50%;
  }

  .image-holder-patent-div {
    width: 25%;
  }
}

@media (max-width: 760px) {
  .welcome-area {
    flex-direction: column;
  }

  .social-media-holder,
  .personality-of-the-week,
  .most-visited-quotes {
    width: -webkit-fill-available;
  }

  .social-media-holder-ab {
    width: 15%;
  }

  .nav-bar-on-small-screen {
    display: flex;
    height: 3em;
    justify-content: space-around;
    align-items: center;
  }
}

@media (max-width: 560px) {

  .quote-links {
    width: -webkit-fill-available;
  }

  .image-holder-patent-div {
    width: 35%;
  }
}

@media (max-width: 425px) {
  #dont-show-mobile{
    display: none;
  }

  .most-visited-quotes {
    flex-direction: column;
  }

  .image-holder-patent-div {
    width: 50%;
  }

  #famous-quotes-img {
    align-items: center;
    flex-direction: column;
  }
}