/*!****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./themes/mytheme/src/scss/main.scss ***!
  \****************************************************************************************************************************/
*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Josefin Sans", sans-serif;
  font-size: 62.5%;
  color: #333;
  overflow-x: hidden;
}

body {
  font-size: 2rem;
  background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%);
  width: 100%;
  line-height: 1.6;
}

.blog__Title {
  font-size: 3rem;
}

h1, h2 {
  font-family: "Josefin Sans", sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.main-menu {
  background: linear-gradient(112.1deg, rgb(63, 76, 119) 11.4%, rgb(32, 38, 57) 70.2%);
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.main-menu .menu-item {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.main-menu .menu-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-menu .menu-item a:hover,
.main-menu .menu-item a.active {
  color: #ff9800;
  text-shadow: 0 2px 5px rgba(255, 152, 0, 0.8);
}

.main-menu .menu-item:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .main-menu {
    flex-direction: column;
    align-items: center;
  }
  .main-menu .menu-item {
    margin-bottom: 1rem;
  }
}
.blog__Section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%);
  margin: 3rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: white;
  width: 100%;
  max-width: 900px;
  gap: 2rem;
}

.blog__Section h2 {
  color: white;
}

.blog__Section p {
  color: white;
  font-size: 1.8rem;
  margin-top: 1rem;
}

.post {
  padding: 3rem;
  margin: 2rem auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  width: 100%;
  transition: transform 0.3s ease;
}

p {
  font-family: "Josefin Sans", sans-serif;
}

.post:hover {
  transform: translateY(-5px);
}

.post__title {
  font-size: 3rem;
  color: #1c1c1c;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.post__content {
  font-size: 1.8rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2rem;
}

footer {
  background-color: #1c1c1c;
  padding: 2rem 0;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
}

footer a {
  color: #ccc;
}

footer a:hover {
  text-decoration: underline;
}
