body {
  font-family: Arial;
  margin: 0;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}

b {
  color: #437FCC;
}
.blog-container {
  width: 50%;
  justify-self: center;
  font-size: 1vw;
  padding: 40px;
  margin: 40px;
  border-radius: 10px;
  background-color: aliceblue;
  display: grid;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  max-width: 70%;
  position: relative;
  margin: auto;
  border: 4px solid #437FCC;
  border-radius: 10px;
}

@media screen and (width <= 800px) {
  .container {
    max-width: 100%
  }
  
  .blog-container {
      width: 90%;
      justify-self: center;
      font-size: 4vw;
      padding: 20px;
      margin: 40px;
      border-radius: 10px;
      background-color: aliceblue;
      display: grid;
  }

  }

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 32px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 5px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(82, 163, 229, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000000;
  font-size: 20px;
  padding-top: 10px;
  align-items: center;
}

/* Container for image text */
.caption-container {
  border-top: 2px solid black;
  text-align: center;
  background-color:rgb(165, 204, 255);
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 11.11%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

/*styles*/

.blog-text {
    
  font-size: 2vw;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  background-color: aliceblue;
  display: grid;
}

.element {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}