* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --primary-color: #222831;
  --secondary-color: #31363f;
  --base-color: #720b0f;
  --bg-color: #eeeeee;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.container {
  background-color: var(--bg-color);
  margin: 0 auto;
}

.container .blog-home {
  background-image: url(../Assets/allimages/blogs/blog.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.container .blog-home .blog-one {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background: rgba(0, 0, 0, 0.623); */
  padding: 2rem;
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

.container .blog-home .blog-one h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
  filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.5));
}

.container .blog-home .blog-one p {
  font-size: 18px;
}

.button a {
  text-decoration: none;
  margin: 15px 30px;
  background-color: var(--base-color);
  color: var(--bg-color);
  padding: 15px 30px;
  border-radius: 50px;
  /* border: 2px solid var(--bg-color); */
  display: inline-block;
}

.button a:hover {
  background-color: white;
  color: var(--primary-color);
  /* border: 2px solid var(--base-color); */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .container .blog-home {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .container .blog-home .blog-one h1 {
    font-size: 36px;
  }

  .container .blog-home .blog-one pre {
    font-size: 16px;
  }

  .button {
    padding: 10px 20px;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .container .blog-home .blog-one h1 {
    font-size: 28px;
  }

  .container .blog-home .blog-one pre {
    font-size: 14px;
  }

  .button {
    padding: 8px 15px;
  }
}

.blog-content {
  width: 95%;
  margin: 0 auto;
}

.blog-content .blog-two {
  background-color: var(--bg-color);
  border-radius: 5px;
  min-width: 80%;
  min-height: 50vh;
  margin: 90px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  border: 1px solid var(--primary-color);
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}

.blog-two .content-boxx {
  flex: 1;
  text-align: center;
}

.img-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
}

.img-box img {
  width: 85%;
  border-radius: 24px 2px 24px 2px;
  /* border: 2px solid var(--primary-color); */
}
@media screen and (max-width: 768px) {
  .img-box img {
    width: 80%;
    margin: 0px auto;
    padding: 5%;
    flex-direction: column;
  }
}

.blog-content .blog-two .content-box {
  text-align: justify;
  height: 30vh;
  overflow-y: auto;
  line-height: 1.5;
  word-spacing: 1.5px;
  margin-bottom: 30px;
}

::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-thumb {
  background: #eeeeee;
}

::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.author {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 5vh;
}

.author img {
  width: 90px;
}
