*{
  margin: 0;
  padding: 0;
}

body{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: rgb(250, 235, 224);
}

.blog-ctr{
  max-width: 81rem;
  margin: 0 auto;
  margin-top: 90px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.intro-ctr{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 40%;
}

.intro-ctr h2{
  width: 100%;
}

.img-ctr{
  margin-top: 10px;
  width: 100%;
}
.img-ctr img{ 
  width: 100%;
  border-radius: 10px; 
  transition: 0.15s ease-out;
}

.img-ctr img:hover{
  box-shadow: 10px 10px 5px gray;
  transform: scale(1.02);
}


.detail{
  padding: 20px;
  line-height: 25px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

/* Random image container */

.img-box{
  max-width: 81rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  gap: 25px;
}

.rdm-img-ctr{
  flex-basis: 25%;
  max-width: 100px;    
}

.rdm-img-ctr img{
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgb(0, 0, 0);
  transition: 0.15s;
}

.rdm-img-ctr img:hover{
  transform: scale(1.1);
}


/*pop-up button Css*/
.show-pop-btn{
  display: flex;
  width: 75px;
  height: 75px;
  background-color: tomato;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  transition-duration: 0.15s;

  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5;
}


.pop-ctr{
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.687);
  position: fixed;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.pop-box{
  width: 50%;
  background-color: wheat;
  border-radius: 10px;
  padding: 15px 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: relative;
}

.close-pop-btn{
  color: rgb(229, 52, 21);
  background-color: transparent;
  height: 25px;
  width: 25px;
  border: none;
  padding: 3px;
  border-radius: 50%;
  font-size: larger;
  font-weight: bolder;
  cursor: pointer;

  position: absolute;
  right: 10px;
  top: 10px;
}

.pop-box img{
  width: 90%;
  height: auto;
  margin: 10px;
  border-radius: 10px;
  filter: drop-shadow(0px 0px 4px rgb(24, 21, 21));
}