* {
    margin: 0;
    padding: 0;
    caret-color: rgba(0, 0, 0, 0);
    user-select: none;
    background-color: rgba(117, 117, 255, 0.5);
}

body { 
    background: url(mypic.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* backdrop-filter: blur(2px);p */
    flex-wrap: wrap;
    /* transform-style: preserve-3d; */
}

.container .box {
    background-color: rgb(0, 0, 0, 0.1);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-top: 1px solid white;
    border-left: 1px solid white;
    /* backdrop-filter: blur(20px); */
    position: relative;
    width: 300px;
    height: 500px;
    border-radius: 20px;
    /* backdrop-filter: blur(1000px); */
    /* filter: blur(1px); */
    /* transform-style: preserve-3d; */
}

.container .box::before {
    content: 'Parjanya';
    position: absolute;
    top: 0px;
    left: 55px;
    font-size: 2.5rem;
    font-style: italic;
    font-family: Arial;
    white-space: nowrap;
    font-weight: 900;
    color: #fff;
    transition-duration: 0.5s;
    transform: translate3d(0px, 30%, 50px);
    opacity: 0;
}

.container .box:hover::before {
    opacity: 1;
    top: 20px;
}

.container .box img {
    position: absolute;
    left: 25%;
    top: 25%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: all;
    transition-duration: 0.5s;
    opacity: 0;
    transform: translate3d(10px, 30%, 50px);
    z-index: 1;
}

.container .box:hover img {
    opacity: 1;
}

.container .box .button {
    position: absolute;
    bottom: 0px;
    padding: 10px;
    left: 35%;
    background: linear-gradient(to bottom right, rgb(57, 231, 100), rgb(52, 194, 204), rgb(243, 18, 213));
    border-radius: 20px;
    color: white;
    transition: 0.5s;
    cursor: pointer;
    opacity: 0;
    z-index: 10;
    transform: translate3d(10px, 30%, 50px);
    transition: all 0.5s;
}

.container .box:hover .button {
    opacity: 1;
    bottom: 50px;
}
