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

body {
    font-family: 'Georgia', serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    text-align: center;
}
.avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff47a3 0%, #ff00ff 45%, #6a00ff 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 1.1rem;
    font-family: 'Audiowide', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* transition: all 0.3s ease; */
    border: 2px solid rgba(255, 122, 233, 0.9);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 14px rgba(255, 71, 163, 0.9);
    box-shadow:
        0 0 10px rgba(255, 0, 255, 0.35),
        0 0 20px rgba(106, 0, 255, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.35);
}

.button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 14px rgba(255, 0, 255, 0.55),
        0 0 30px rgba(106, 0, 255, 0.55),
        0 12px 24px rgba(0, 0, 0, 0.45);
    filter: saturate(120%);
}

#quote {
    font-family: 'Tilt Neon', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    min-height: 4rem;
    color: #00f0ff;
    letter-spacing: 2px;
    text-shadow:
        0 0 3px rgba(0, 240, 255, 0.9),
        0 0 8px rgba(0, 240, 255, 0.9),
        0 0 16px rgba(0, 240, 255, 0.7),
        0 0 28px rgba(0, 170, 255, 0.6),
        0 0 40px rgba(138, 43, 226, 0.5);
    animation: fadeInGlow 0.5s ease-in both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInGlow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #quote {
        font-size: 2.2rem;
    }
}
