body {
  width: 100vw;
}

/* css for carousel*/

button{
  border: none;
  cursor: pointer;
  color: white;
  background: none;
  transition: all .3s ease-in-out;
}



.carousel-view {
display: flex;
align-items: center;
gap: 10px;
transition: all 0.25s ease-in;
max-width: 950px;
}

.carousel-view .item-list {
display: flex;
gap: 15px;
scroll-behavior: smooth;
transition: all 0.25s ease-in;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
overflow: hidden;
scroll-snap-type: x mandatory;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.item-list::-webkit-scrollbar {
  display: none;
}

.prev-btn {
background: none;
cursor: pointer;
}

.next-btn {
cursor: pointer;
}

.item {
  scroll-snap-align: center;
  height: 200px;
  background-color: rgba(100, 148, 237, 0.655);
  border-radius:8px;
}

.intro{
  width:100%;
  background-color: rgba(100, 148, 237, 0.655);
  margin: 0;
}

.intro h1 {
  padding-top:5%;
  padding-left: 15%;
  font-size: 40px;
  font-family: Baskerville, Baskerville Old Face, Hoefler Text, Garamond, Times New Roman, serif;
}

.intro h3 {
  padding-left: 15%;
  padding-bottom: 3%;
}

.intro p{
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 3%;
}

a {
  color: black;
}

.blog-posts{
  display: flex;
  justify-content: center;
  gap: 1%;
  width: 100vw;
  max-width: 100vw;
  margin: 5% 0%;
  padding: 0% 0%;
}

.how-to{
  width: 25%;
  min-width: max-content;
  height: auto;
  text-align: center;
  justify-content: center;
  margin-left: 15vw;
}

.how-to-fig {
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

.container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  margin-left: 0%;
  margin-right: 0%;
}

.recent-posts{
  width: 65%;
  justify-content: center;
  text-align: center;
  margin-right: 15vw;
}
