html, body {
    width: 100%;
    height:100%;
    }

    body {
        background: linear-gradient(-45deg, #6f1c03, #71cbf0c9, #e9b647, #7166ca);
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
    }

    @keyframes gradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    .disclaimer-area{
        max-width: 600px;
    }

    .imgLogo{
        max-width: 100%; 
        border-radius: 20px;
    }