/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('image.png');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover; /* Ensures the image fully covers the screen */
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}



.glitch {
    font-size: 10rem;
    text-transform: lowercase;
    font-weight: bolder;
    background: linear-gradient(to right, #3498db 20%, #0077ff 50%, #3498db 80%);
    background-size: 200% 100%;
    background-position: left bottom;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientAnimation 3s linear infinite;
}
@keyframes gradientAnimation {
    0% { background-position: left bottom; }
    50% { background-position: right bottom; }
    100% { background-position: left bottom; }
}




/* Text Styling */
h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-top: -10px;
}

p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.7;
}

/* Button */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #3498db, #0059ff);
    border-radius: 8px;
    transition: all 0.4s, background 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 600px) {
    .glitch {
        font-size: 5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
