.header {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #7c38b7;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100dvw;
}

* {box-sizing: border-box;}

.img-zoom-container {
  position: relative;
}

.img-zoom-wrapper {
  position: relative;
  display: inline-block;
}

.img-zoom-lens {
  position: absolute;
  z-index: 2;
  border: 1px solid #d4d4d4;
  /*set the size of the lens:*/
  width: 40px;
  height: 40px;
}

.img-zoom-result {
  border: 1px solid #d4d4d4;
  /*set the size of the result div:*/
  width: 300px;
  height: 300px;
}