.actualBlog {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--dark-red);
}

.actualBlogWrapper {
  width: 80%;
  background-color: var(--dark-red);
  margin: 20px 0;
  line-height: 34px;
  padding: 10px;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.actualBlogWrapper img {
  width: 100%;
  height: 1200px;
}

.actualBlogWrapper .content {
  width: 90%;
  padding: 20px;
  word-spacing: 4px;
}

.actualBlogWrapper .content ul {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 0;
}

.actualBlogWrapper .content ul li {
  list-style: circle;
}

@media (max-width: 768px) {
  .actualBlogWrapper {
    width: 98%;
    margin: 20px 0;
    padding: 0;
    line-height: 32px;
  }

  .actualBlogWrapper img {
    height: 300px;
  }

  .actualBlogWrapper .content {
    width: 96%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
}
