
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    
    max-width: 400px;
}

.profile-pic {
    width: 50%;
    height: 50%;
    
    margin-bottom: 10px;
}

.name {
    font-size: 1.5em;
    margin: 10px 0;
}

.bio {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.social {
    width: inherit !important;
    display: inline-flex;
    gap: 10px;
    margin: -7px 0;
}

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

.links .link:hover {
    background-color: #e76e25;
}

.social-icons {
    margin-top: 20px;
}

.social-icons .icon {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icons .icon:hover {
    transform: scale(1.2);
}
