* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: hsl(0, 0%, 20%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    Font-size : 14px;

}

.container {
    max-width: 1200px;  /* Maximum width for desktop */
    margin: 0 auto;
    padding: 20px;
    text-align: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.profile {
    padding: 20px;
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.location {
    color: #8f8f8f;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.description {
    font-size: 0.9em;
    margin-bottom: 20px;
}

.buttons button {
    background-color: #444;
    color: hsl(0, 0%, 100%);
    border: none;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin: 8px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons button:hover {
    background-color:  hsl(75, 94%, 57%)
    ;
}
.profile-image-container {
    width: 150px;                            /* Set the width of the circle */
    height: 150px;                           /* Set the height of the circle */
    border-radius: 50%;                      /* Make the container circular */
    background-image: url('social-links-profile-main/pic/pic.jpg'); /* Set the background image */
    background-size: cover;                  /* Cover the entire div */
    background-position: center;             /* Center the image */
    margin: 0 auto;                          /* Center the container */
}

/* mediw queires for mobile and desktop widths */
/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .profile {
        padding: 10px;
    }

    .profile-image-container {
        width: 100px;    /* Smaller size for mobile */
        height: 100px;
    }

    h3 {
        font-size: 1.5em; /* Smaller heading on mobile */
    }

    .buttons button {
        width: 100%;     /* Full width buttons on mobile */
        padding: 10px;   /* Adjust padding */
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .profile {
        display: flex;          /* Align items in a row */
        flex-direction: column; /* Stack items vertically */
        align-items: center;    /* Center items */
    }

    h3 {
        font-size: 2em;         /* Larger heading for desktop */
    }
}
