body{
  font-family: Roboto, sans-serif;
  margin: 0;
  padding:50px 0;
  height: 2000px;
}
.heading{
  color: rgb(8, 0, 31);
  font-size: 35px;
  font-weight: 800;
  width: 100%;
  line-height: 1.2;
  text-align: center;
}
.description{
  color: rgb(105, 105, 105);
  line-height: 1.7;
  font-weight: 500;
  font-size: 19px;
  text-align: center;
}
.title-image{
  border-radius: 10px;
}.image-modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.9);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.image-modal.active{
  display: flex;
}

.modal-image{
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-modal{
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}