* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: rgb(54, 54, 54);

  background-repeat: round;
}
/* header design start */
.header {
  background: white;
}
.header h1 {
  color: black;
  text-shadow: none;
}
.header ul {
  background: white;
}
.header ul li a {
  color: black;
}
.header ul li a:hover {
  color: var(--main);
}
/* header design end */

.box-area li {
  background: rgb(255, 255, 255);
}
/* background color  */
.bg-white {
  background: white;
}
.bg-dark {
  background: rgb(29, 53, 98);

  color: white;
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.containerr {
  width: 75%;
  margin: auto;
  margin-top: 200px;
}
/* fe-p = full post */
.fe-p {
  display: flex;
  flex-direction: row;
  box-shadow: -12px -2px 21px gray;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.fe-p:hover {
  box-shadow: -12px -2px 21px var(--main);
}
/* post  text */
.fe-pt {
  height: inherit;
  width: 50%;
  min-height: 3vmax;
  text-transform: capitalize;
  text-shadow: 0.5px 0.5px 2px rgb(112, 112, 112);
  padding: 62px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5vmin;
}
.fe-pt p a:hover {
  color: red;
}
/* image in the fe-p */
.fe-img {
  width: 50%;
}
.fe-img img {
  width: 100%;
  height: 100%;
}
.fe-pt h3 {
  color: var(--main);
  text-shadow: 1px 1px 1px black;
}

@media (max-width: 1100px) {
  .fe-pt {
    width: 100%;
  }
  .fe-img {
    width: 100%;
  }
  .fe-img img {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .fe-p {
    flex-direction: column;
  }
  .fe-pt {
    padding: 32px;
  }
}
