
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.main{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000230;
    position: relative;
}
.heading{
    color: #dcec00;
    font-weight: 700;
    font-size: 48px;
    text-align: center;
    padding: 0 1em;
}

.subHeading{
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 0 1em;
}
.subHeadingUnExpected{
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 0 1em;
    margin-top: 20px;
}

.nowu{
    font-weight: 700;
}

.box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 4;
}

.top-right-circle{
    position: absolute;
    top: -7vw;
    right: -20vw;
}
.bottom-left-circle{
    position: absolute;
    bottom: -7vw;
    left: -20vw;
}
.logo{
    position: absolute;
    top: 2vw;
    left: 2vw;
}

.button1 {border-radius: 20px;}
.button {
    background-color: #dcec00; /* Green */
    border: none;
    color: #000230;
    padding: 8px;
    padding-right: 16px;
    padding-left: 16px; 
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 2px 2px;
    cursor: pointer;
    font-weight: 700;
  }

  .gap{
    margin: 16px;   
  }
  .gapUnexpected{
    margin: 22px;   
  }



@media  (min-width: 320px ) and (max-width: 700px){
    .logo{
        position: absolute;
        top: 4vw;
        left: 4vw;
        z-index: 5;
    }
    .heading{
        line-height: 3.3rem;
        margin-bottom: 1rem;
    }
    .top-right-circle{
        position: absolute;
        top: -20vw;
        right: -116vw;
    }
    .bottom-left-circle{
        position: absolute;
        bottom: -16vw;
        left: -116vw;
    }
  }

@media  (min-width: 701px ) and (max-width:1269){
    .logo{
        position: absolute;
        top: 4vw;
        left: 4vw;
    }
    .heading{
        line-height: 3.3rem;
        margin-bottom: 1rem;
    }
    .top-right-circle{
        position: absolute;
        top: -5vw;
        right: -32vw;
    }
    .bottom-left-circle{
        position: absolute;
        bottom: -5vw;
        left: -32vw;
    }
  }

