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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
}

.profile h1 {
    margin: 10px 0;
    font-size: 24px;
}

.links {
    margin-top: 20px;
}

.link {
    display: block;
    background: #ff4b5c;
    color: white;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.link:hover {
    background: #ff6b81;
    transform: scale(1.05);
}

footer {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.7;
}
