body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    transition: background 0.5s ease;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.links {
    margin-top: 30px;
}

.link-item {
    display: block;
    padding: 12px 20px;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.link-item:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.link-item:active {
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.4);
}


 
  
  footer {
    margin-top: 40px;
    text-align: center;
    color: #eee;
    font-size: 13px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

footer a {
    color: #fff;
    text-decoration: underline;
    margin: 0 6px;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffd6e0;
}

@media (max-width: 600px) {
    footer {
        font-size: 12px;
        padding: 15px 8px;
    }
}





