* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button_box a,
a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: 500ms;
}

.button_box:hover a,
a:hover {
    color: rgb(0, 0, 0);
    transition: 500ms;
}


 @media (hover: hover) {
    body:not(:hover, :focus-within, :active) .box-main {
        margin-bottom: 260%;
        transition: 1500ms
    }
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.section-main {
    background: url("https://cdn.discordapp.com/attachments/1168491440658202747/1172442273829625906/R.gif?ex=656054f5&is=654ddff5&hm=470e16589feaa811fb5040959a94fa6d7da0767e789fe2eb05290a83c26a9165&");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.box-main {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 700px;
    background-color: transparent;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 10px;
    transition: 1500ms;
}

.profile_image {
    position: absolute;
    top: 6%;
    left: 34%;
    max-width: 100%;
    height: 150px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 50%;
}

.profile_name {
    position: absolute;
    top: 35%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
}

.description {
    position: absolute;
    top: 40%;
    color: rgba(255, 255, 255, 0.8);
    opacity: 80%;
    font-size: 14px;
}

.row-main {
    position: absolute;
    list-style-type: none;
    display: grid;
    grid-gap: 16px;
    top: 50%;
}

.button_box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 40px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 10px;
    color: rgb(255, 255, 255);
    cursor: grabbing;
    transition: 0.3s;
    font-size: 20px;
}

@media (hover: none) {
    .button_box:not(:active) {
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 10);
        transform: translateY(-5%);
        cursor: grab;
        transition: 0.3s;
    }
    .button_box:active {
        color: rgb(255, 255, 255);
        transition: 0.3s;
    }
}

@media (hover: hover) {
    .button_box:hover {
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 10);
        transform: translateY(-5%);
        cursor: grab;
        color: rgb(255, 0, 0);
        transition: 0.3s;
    }
    .button_box:active {
        color: rgb(255, 255, 255);
        transition: 0.3s;
    }
}

.button_box:active {
    box-shadow: none;
    transform: translateY(0%);
    cursor: grabbing;
    transition: 0.3s;
}