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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #d4af37, #f7e8b8);
    color: #222222;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slogan Section */
.slogan-section {
    position: relative;
    text-align: center;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 20px;
}

/* Decorative Elements */
.decorative-elements .circle {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: moveCircle 6s infinite;
}

.decorative-elements .triangle {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 140px solid rgba(255, 255, 255, 0.3);
    animation: moveTriangle 6s infinite;
}

@keyframes moveCircle {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes moveTriangle {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

/* Slogan Content */
.slogan {
    font-size: 2.5em;
    color: #222222;
    margin-bottom: 20px;
    animation: fadeIn 2s;
}

.slogan-description {
    font-size: 1.2em;
    color: #444444;
    margin-bottom: 30px;
    animation: fadeIn 2s 0.5s;
}

.website-link {
    display: inline-block;
    font-size: 1em;
    color: #d4af37;
    text-decoration: none;
    background: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: fadeIn 2s 1s;
}

.website-link:hover {
    background: #d4af37;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slogan {
        font-size: 2em;
    }

    .slogan-description {
        font-size: 1em;
    }

    .website-link {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}
img {
    width: 200px;
    margin-bottom: 24px;
}
.copyright{
    position: fixed;
    bottom: 10px;
}