*
{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

html, body {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: hidden;
  background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  background-color: #CF9FFF;
  align-items: center;
}

img, video, canvas, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.back-btn {
  margin-top: 1rem;
  margin-left: 1rem;
  position: relative;
  display: flex;
  height: 3em;
  width: 100px;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee4b;
  border-radius: 3px;
  letter-spacing: 1px;
  transition: all 0.2s linear;
  cursor: pointer;
  border: none;
  background: #fff;
}

.back-btn > svg {
    margin-right: 5px;
    margin-left: 5px;
    font-size: 20px;
    transition: all 0.4s ease-in;
}

.back-btn:hover > svg {
    font-size: 1.2em;
    transform: translateX(-5px);
}

.back-btn:hover {
    box-shadow: 9px 9px 33px #9d65d4;
    transform: translateY(-2px);
}

.form-container
{
  justify-content: center;
  background: radial-gradient(circle,rgba(63, 94, 251, 1) 6%, rgba(252, 70, 107, 1) 100%);
  opacity: 0.6;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.4px);
  -webkit-backdrop-filter: blur(8.4px);
  width: 90em;
  padding: 4px;
  height: 48em;
  transition: all 0.2s ease-in-out;
  box-shadow: 8px 8px 7px #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img-container
{
  display: flex;
  justify-content: center;
  gap: 30rem;
  padding: 2.5rem 1rem;
}

.img-container img 
{
  width: 182px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  transition-duration: 0.8s;
  transition-property: transform;
}

.rod-container
{
  display: flex;
  justify-content: center;
  gap: 45rem;
}

.rod-container img 
{
  margin-top: 4rem;
  width: 256px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  transition-duration: 0.8s;
  transition-property: transform;
  -webkit-animation:spin 4s linear infinite;
  -moz-animation:spin 4s linear infinite;
  animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.para
{
    font-family: "Varela" sans-serif;
    font-weight: 600;
    max-width: auto; 
    width: 100%;
    border-radius: 50%;
    text-align: center;
    line-height: 4;  
    white-space: normal; 
    background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
    background-clip: text;
    margin-top: -23rem;
}

.para p
{
  transition: all 0.3s ease;
}

.cursor-trail {
  position: fixed;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 9999;
  animation: trail-fade 0.6s forwards;
  transform: translate(-50%, -50%);
  image-rendering: pixelated;
}

@keyframes trail-fade {
  0% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: scale(0.2) translate(-50%, -50%);
  }
}