@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');

body{
    background: linear-gradient(#a83a3a, #ec7575);
    height: 100vh;
    width: 100vw;
    /* font-family: "Space Grotesk", sans-serif; */
    font-family: "Poppins", sans-serif;
    font-style: normal;
    overflow-x: hidden;
}

a{
    text-decoration: none;
}
.Logo{
    height: 60px;
    border: 1px solid #df5858;
    border-radius: 30%;
}

.main{
    display: grid;
    place-items: center;
    margin-top: 100px;
}

h1{
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 45px;
    
}


.box{
    border: 2px solid white;
    /* background-color: white; */
  
    border-radius: 5px;
    margin-top: 30px;
    padding: 20px;
}

.first{
    display: flex;
    gap: 50%;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: 20px;
}


.first2{
    display: flex;
    gap: 30%;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: 20px;
    font-size: 12px;
    margin: 20px;
}

.action{
   border: 1px solid white; padding: 6px 180px; color: white; border-radius: 7px;
   background-color: #df5858;
   margin-top: 30px;
   font-size: 26px;
}

.d{
    border: 2px solid white;
    /* background-color: white; */
    display: flex;
    justify-content: center;
    border-radius: 5px;
    margin-top: 30px;
    color: white;
    gap: 70px;
    padding: 40px;
    margin-bottom: 40px;
    
}

@media(max-width:600px){

    .first{
        gap: 30%;
      
    }

    .first2{
    }


    .box{
        border: 2px solid white;
        /* background-color: white; */
      
        border-radius: 5px;
        margin-top: 30px;
        padding: 20px;
        width: 350px;
    }



    .action{
        border: 1px solid white; padding: 6px 100px; color: white; border-radius: 7px;
        background-color: #df5858;
        margin-top: 30px;
        font-size: 26px;
     }

     .d{
        gap: 40px;
    }

}