body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    color: #171321;
}
.main{
    display: flex;
    flex: 1 1 auto;
    background: radial-gradient(50.08% 44.51% at 100% 100%,rgba(169,137,245,.2) 0,rgba(119,89,194,0) 100%),radial-gradient(60.76% 48.01% at 0 100%,rgba(226,67,41,.2) 0,rgba(226,67,41,0) 100%),#f6f3fe;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.logo{
    margin-bottom: 1rem;
    max-width: 275px;
}
.content{
    max-width: 680px;
    text-align: center;
    position: relative;
    z-index: 11;
    padding: 0 1rem;
}
.under-maintain{
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
    background: linear-gradient(89.95deg,#FF9047 3.13%,#7E4FEF 66.86%,#592ac8 123.2%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
p{
    font-size: 1.05rem;
    line-height: 160%;
    font-weight: 900;
}
p span{
    font-weight: bold;
}  
 .highlight{
    color: #0B173D;
 }
p a{
    font-weight: bold;
    color: #7759c2;
    text-decoration: none;
}
p a:hover{
    text-decoration: underline;
}
.connect-img{
    display: flex;
    width: 100%;
    padding: 1rem 0;
    position: relative;
    z-index: 11;
}
.connect-img img{
    width: 100%;
}

.bg {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}
.bg .Polygon-1 {
    position: absolute;
    top: -30%;
    left: 30%;
    color: #EBECF0;
    max-width: 1000px;
    transform: translateX(-50%);
    max-width: 50%;
    animation: rotate 100s normal linear infinite;
    opacity: 0.5;
    z-index: 0;
}
.bg .Polygon-2 {
    position: absolute;
    left: 10%;
    top: -15%;
    max-width: 40%;
    color: #EBECF0;
    transform: translateX(-50%);
    animation: rotate2 110s normal linear infinite;
    opacity: 0.05;
    z-index: 0;
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

@keyframes rotate2 {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg) scale(2);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg) scale(2);
    }
}