body,
html {
    display: flex
;
    justify-content: center;
    align-items: center;
    background: url(../images/background.png) no-repeat center center fixed;
    background-size: cover;
    margin-top: 25px;
}

.logo {
    display: block;
}

.logo img {
    max-width: 200px;
}

.btn-group-vertical {
    width: 280px;
}

.btn-group-vertical button {
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    height: 50px;
    margin-bottom: 15px;
    color: #000;
    border: 2px solid #41a916;
}

.btn-group-vertical button:hover {
    color: #fff !important;
    background-color: #41a916 !important;
    border-color: #fff !important;
}

.content-text {
    color: #41a916;
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 24px;
    max-width: 600px;
    padding: 20px;
    border-radius: 20px;
    margin: 20% auto 0 auto;
}

.text-list {
    color: #a12594;
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 18px;
    padding: 20px;
    border-radius: 20px;
    margin-top: 30px;
    margin-left: 20px;
    max-width: 48%;
}

.banner {
    text-align: center;
    max-width: 500px;
    height: 65px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #caa9ff;
    text-shadow: 0 0 8px rgba(202, 169, 255, 0.6);
}

.banner p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #e0d4ff;
}

.magic-icons {
    margin-top: 10px;
    font-size: 2rem;
}

.magic-icons span {
    margin: 0 10px;
    animation: pulse 2s infinite ease-in-out;
}

.banner .cta-button {
    margin-top: 25px;
    padding: 12px 30px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(to right, #7c4dff, #651fff);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.6);
    text-decoration: none;
}

.banner .cta-button:hover {
    background: linear-gradient(to right, #9575cd, #7e57c2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .text-list {
        max-width: 98%;        
    }

    .content-text {
        margin-top: 40%;
        width: 350px;
    }
}