/* styles.css */

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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

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

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.name {
    font-size: 24px;
    margin-bottom: 5px;
}

.description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

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

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

.links2 .link {
    display: block;
    background-color: #FFA500;
    color: black;
    text-decoration: none;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.links2 .link:hover {
    background-color: #FF5349;
}

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

.links3 .link:hover {
    background-color: #FFF000;
}

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

.social-icon img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 600px) {
    .profile-pic {
        width: 80px;
        height: 80px;
    }

    .name {
        font-size: 20px;
    }

    .description {
        font-size: 12px;
    }

    .links .link {
        padding: 12px;
        font-size: 14px;
    }
}
