body{
    margin: 0;
    padding: 0;
    height: 100%;
    background:linear-gradient(to bottom right,#2F3F52,#85555C, #F47169)
}
#mains{
    width: 100%;
}
.mb{
    height: auto;
    width: 100%;
    position: relative;
}
.main-div{
    width: 100%;
}
.img{
    overflow: hidden;
    aspect-ratio: 16/9;
    pointer-events: none;
    width: 100%;
}
.img img{
    height: 100%;
    width: 100%;
}

.md{
    overflow: hidden;
    position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      height: 100%;
      width: 100%;
}

 
.para{
    text-align: center;
    font-weight: bold;
    font-size: 34px;
    font-family: "Gotham-Thin";
}
  
@font-face {
    font-family: Gotham-Thin;
    src: url("{{ url_for('static', filename = 'Gotham_Thin.otf') }}");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


#movingImage {
    position: fixed; /* Ensure the image stays visible on the screen */
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none; /* Prevent interaction with the image */
}

@keyframes c-dashed-line-path {
	from {
		stroke-dashoffset: 940;
	}
	to {
		stroke-dashoffset: 0;
	}
}

#line {
    stroke-width: 2;
  }
  
  #curve{
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 5, 7; /* Optional: Adds dashed line effect */
}

@media (max-width: 1024px) {
    .para {
        font-size: 32px;
    }
}

/* Large mobile devices */
@media (max-width: 768px) {
    .para {
        font-size: 30px;
    }
}

/* Medium mobile devices */
@media (max-width: 600px) {
    .para {
        font-size: 28px;
    }
    .responsive-svg {
        display: none;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .para {
        font-size: 26px;
    }
    .responsive-svg {
        display: none;
    }
}
.responsive-svg {
    
    
    position: relative;
    z-index: 2;
    left: 0;
}  


.mains{
    margin-top: 200px;
}
  
