@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.15);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    max-width: 480px;
    width: 100%;
    backdrop-filter: blur(12px);
}

.welcome-box h1 {
    font-weight: 600;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.name {
    color: #ffdd57;
    letter-spacing: 1.3px;
}

.quote {
    font-weight: 300;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 35px;
    line-height: 1.6;
}

.social-links a {
    color: #fff;
    font-size: 1.8rem;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #ffdd57;
    transform: scale(1.3);
    cursor: pointer;
}
