/*Paragraph Spacing*/
body p {
margin: 0;
padding: 0;
}

/*Boxed Div*/
.boxedborder{
    background-color: #fff;
    color: #666;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
padding:10px;}

/*Button to Div Bottom*/
.bottomdiv {
display: flex; 
  flex-direction: column;}
.buttondiv {
  margin-top: auto;
}

/*Intro Images*/
.intro-image {
  text-align: center;
}

.intro-image .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 25px;
  display: block;
}

.intro-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 128, 254, 0.7); /* 50% transparent blue */
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.intro-image .overlay span {
  color: white;
  font-weight: bold;
  font-size: 1.6em;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
}

.intro-image .image-wrapper:hover .overlay {
  opacity: 1;
}

/*Lesson Numbers*/
.lesson-number {
  width: 100px;
  height: 100px;
  border: 5px solid #0AD970;
  border-radius: 50%;
  background-color: white;
  color: #0AD970;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
}

