html,
        body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #141414;
        }

        .custom-card {
            position: relative;
            width: 90%;
            max-width: 600px;
            background: rgb(8, 8, 8);
            border-radius: 2px;
            padding: 5px;
            overflow: hidden;
            z-index: 1;
            -webkit-box-shadow: 10px 14px 12px -14px rgba(0, 0, 0, 1);
            -moz-box-shadow: 10px 14px 12px -14px rgba(0, 0, 0, 1);
            box-shadow: 10px 14px 12px -14px rgba(0, 0, 0, 1);
        }

        .custom-card::before {
            content: "";
            position: absolute;
            top: 50px;
            left: -70px;
            right: -70px;
            bottom: 50px;
            background: linear-gradient(90deg, red, rgb(255, 0, 0), rgb(53, 2, 10), red);
            border-radius: 18px;
            z-index: -1;
            animation: borderAnimation 4s linear infinite;
        }

        @keyframes borderAnimation {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .card-content {
            position: relative;
            z-index: 2;
            background: #141414;
            border-radius: 8px;
            padding: 20px;
        }

        .title,
        .subtitle,
        p {
            color: white;
        }