@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #3a0ca3, #7209b7, #560bad);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
}

.container {
    text-align: center;
}

.main-text {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    color: #d3d3d3;
    background: rgba(128, 128, 128, 0.15);
    padding: 20px 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(211, 211, 211, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-text:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(211, 211, 211, 0.35);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
