
@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&display=swap');

*{
    font-family: Poppins;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: rgba(156, 71, 230, 0.236);
}
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(210, 59, 165);
    padding: 20px;
    background-color: rgba(6, 6, 6, 0.081);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 50%;
    margin: 10%;
}
button{
    background-color: #471c6f;
    color: white;
    transition: background-color 0.3s ease;
    border-radius: 20px;
    width: 80px;
    cursor:pointer;
}
button:hover{
    background-color: #e5e3e7;
    color: ;
}