*{
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
            font-family: Poppins;
        }
        body{
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background: linear-gradient(135deg, rgb(237, 63, 237), rgb(34, 34, 255));

        }
        .Container{
            position: relative;
            width: 300px;
            height: 400px;
            padding: 30px;
            border: 2px solid white;
            background-color: antiquewhite;
            border-radius: 30px;
            background-color: rgba(255, 255, 255, 0.336);
            backdrop-filter: blur(20px);
        }
        p{
            text-align: center;
            font-weight: 500;
            font-size: 20px;
            color:gold;
        }
        .Quote_Author_container{
            margin-top: 35px;
            width: 100%;
            display: flex;
            flex-direction: column;
            row-gap: 10px;
        }
        .Quote_Container{
            font-size: 18px;
            font-weight: bold;
            width: 100%;
            text-align: center;
        }
        .Author_Container{
            font-size: 14px;
            font-weight: 500;
            width: 100%;
            text-align: end;
            color :white;
        }
        .butt{
            position: absolute;
            bottom: 50px;
            right: 50%;
            
            transform: translate(50%,50%);
        }
        button{
            padding: 5px 20px;
            border: 2px solid white;
            cursor: pointer;
            color: white;
            display: flex;
            column-gap: 10px;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 500;
            font-variant: small-caps;
            border-radius: 30px;
            background-color: rgb(0, 0, 209);
        }
        button:active{
            background-color: rgb(65, 65, 255);
        }
        #hello{
            font-size: 20px;
            
            
        }
        .Myname{
            text-align: center;
            position: absolute;
            bottom: 10px;
            right: 50%;
            transform: translate(50%,50%);
            font-size: 12px;
            font-weight: 500;
        }