
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;800;900&family=Roboto+Mono:wght@300&display=swap');
*{padding:0px;
    margin:0px;}

body{
    font-family: 'Inter', sans-serif;
    background-image: linear-gradient(to right, rgb(125, 125, 247), rgb(181, 187, 247));
    width:100vw;
    height:100vh;
   display: flex;
   justify-content: center;
   align-items: center;
}
.container{
    border:solid black 3px;
    border-radius: 20px;
    background-color: rgb(198, 153, 234);
    width:30%;
    height:80%;   
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading{
    position: relative;
    top:-180px;
}

.text {
    font-size: large;
    margin-bottom: 20px;
    font-weight: bolder;
    color:rgb(249, 249, 249);
}

.head{
    font-weight: 1000;
    color:rgb(255, 255, 255)
}


p{
    color:white;
}