/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background with Gradient Animation */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Content Styling */
.content {
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeIn 2s ease-in-out;
}

p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 3s ease-in-out;
}

/* Fancy Button Styling */
.contact-link a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: linear-gradient(45deg, #23a6d5, #23d5ab);
    box-shadow: 0 4px 15px rgba(35, 166, 213, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-link a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.contact-link a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(35, 166, 213, 0.6);
}

.contact-link a:hover::after {
    width: 0;
    height: 0;
}

.contact-link a span {
    position: relative;
    z-index: 1;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}