body{
    padding: 0;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #FFF1E5;
    position: relative;
    /* background-image: url("/assets/image/round.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;    
    animation: rotation 10s infinite linear; */
}
body::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background-image: url(/assets/image/round.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    transform-origin: center;
    animation: rotation 10s infinite linear;
    z-index: -1;
  }
.playfair-display-500 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
p{
    margin: 0;
}
.main{
    position: relative;
    height: 100%;
    /* text-align: center; */
}
.main>img{
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0px);
    top: 0px;
    width: 110px;
    height: 110px;
}
.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 100px;
}
.block1>h1{
    font-size: 56px;
    line-height: 74px;
}
.block2>img{
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: 100%;
}
.launch-soon{
    padding: 16px 10px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: white;
    max-width: 230px;
    width: 100%;
}


/* img {
    width:400px;
    height:400px;
    -webkit-animation: rotation 10s infinite linear;
    display: block;
    margin-top: 50px;
  } */
  
  @-webkit-keyframes rotation {
          0% {
                  -webkit-transform: rotate(0deg);
          }
          100% {
                  -webkit-transform: rotate(359deg);
          }
  }

  @media(max-width:768px){
    .container{
        padding: 0 20px;
        padding-top: 40px;
        flex-direction: column;
        justify-content: center;
    }
    .block1{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;    
    }
    .block1>h1{
        font-size: 36px;
        line-height: normal;
        text-align: center;
    }
    .block2>img{
        max-width: 300px;
        max-height: 300px;
        width: 100%;
        height: 100%;
    }
    body::before {
        top: 50%;
        right: 12%;
        width: 300px;
        height: 300px;
        overflow: hidden;
      }
  }