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;
}

.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;
}

.btn-group-horizontal {
    margin-top: 20vh;
}

.btn-group-horizontal button {
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    height: 50px;
    margin-bottom: 15px;
    width: 200px;
    color: rgba(0, 0, 0, 0.75);
    border-color: rgba(0, 0, 0, 0.75);
}

.btn-group-horizontal button:hover {
    background-color: rgba(0, 0, 0, 0.75);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.content-text {
    color: #a12594;
    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;
    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);
}

.slogan-left {
    position: absolute;
    left: 20px;
    top: 30vh;
    width: 300px;
    background: #ffffffbd;
    padding: 20px;
    border-radius: 20px;
}

.slogan-right {
    position: absolute;
    right: 20px;
    top: 30vh;
    width: 300px;
    background: #ffffffbd;
    padding: 20px;
    border-radius: 20px;
}

@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%;
    }
}

@media (max-width: 1280px) {

    .slogan-left,
    .slogan-right {
        display: none;
    }
}