body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000, #1a0033);
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 2;
}

.box {
    position: relative;
    border-radius: 20px;
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    box-shadow: 0 0 0 #cccccc,
                0 0 0 #ffffff,
                10px 10px 10px #cccccc inset,
                -10px -10px 10px #ffffff inset;
    animation: anime 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes anime {
    0% {
        width: 60px;
        height: 60px;
        box-shadow: 0 0 0 #00000,
                    0 0 0 #00000,
                    10px 10px 10px #00000 inset,
                    -10px -10px 10px #00000 inset;
    }
    25% {
        width: 60px;
        height: 60px;
        box-shadow: 1px 1px 1px #00000,
                    1px 1px 1px #00000,
                    0 0 0 #00000 inset,
                    0 0 0 #00000 inset;
    }
    50% {
        width: 150px;
        height: 300px;
        box-shadow: 5px 5px 5px #000000,
                    0 0 0 #00000,
                    0 0 0 #00000 inset,
                    2px 2px 2px #00000 inset;
    }
    100% {
        width: 300px;
        height: 470px;
        box-shadow: 10px 10px 10px #00000,
                    0 0 0 #00000,
                    0 0 0 #00000 inset,
                    2px 2px 2px #00000 inset;
    }
}

.content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
    padding: 20px;
}

.box.expanded .content {
    display: block;
    opacity: 1;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.link {
    display: block;
    padding: 10px;
    margin: 10px 0;
    text-decoration: none;
    color: #fff;
    background-color: #007BFF;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link:hover {
    background-color: #0056b3;
}

.shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: move 4s ease-in-out infinite;
    z-index: 1;
}
