@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
}

body {
    background:
        radial-gradient(circle at 10% 20%, #006eff 0%, transparent 25%),
        radial-gradient(circle at 90% 15%, #ff00ff 0%, transparent 25%),
        radial-gradient(circle at 80% 90%, #7c4dff 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, #00ff73 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, #ffd60055 0%, transparent 40%),
        linear-gradient(135deg, #0f172a, #16213e, #1b2735, #0f172a);

    background-size: 200% 200%;
    animation: bgMove 12s ease infinite;
    overflow-x: hidden;
}

@keyframes bgMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
}

.container h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow:
        0 0 10px cyan,
        0 0 20px #00e5ff;
}
.container >span{
    display: inline-block;
    font-weight:300;
    color: #00e5ff;
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow:
        0 0 10px cyan,
        0 0 20px #00e5ff;
    margin-bottom: 40px;
}

.main {
    width: 100%;
    display: flex;
    justify-content: center;
}

#users {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.child {
    width: 350px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35),
        inset 0 0 20px rgba(255, 255, 255, .05);
    transition: .4s;
}

.child:hover {

    transform: translateY(-12px) scale(1.03);

    box-shadow:
        0 20px 50px rgba(0, 255, 255, .35),
        0 0 30px rgba(255, 0, 255, .25);

    border-color: #00e5ff;
}

.child p {

    margin: 12px 0;
    text-align: justify;
    font-size: 16px;

    color: #f3f3f3;
}

.value {

    color: #00f7ff;

    font-weight: 600;

    text-decoration: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#00e5ff, #8a2be2);
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #111;
}

.copyrights{
    width: 100%;
    text-align: center;
    margin-top: 25px;
    padding: 10px 0;
    color: #b4074f;
    color: #fdffff;
    background: #1a6949;
    font-size: large;

}
@media(max-width:768px) {

    .container h1 {
        font-size: 2rem;
    }

    .child {
        width: 100%;
    }

}