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

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

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    justify-content: space-between;
    position: relative;
}

.left-column {
    flex: 1;
    padding-right: 40px;
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 125px;
    height: autopx;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px; /* Adds space between picture and text */
    image-rendering: high-quality;
}

.profile-text {
    display: flex;
    flex-direction: column;
}

.profile-info h1 {
    font-size: 2em; /* Decrease font size by 10% */
    font-weight: 500; /* Decrease boldness */
    margin-bottom: 5px;
    color: black;
}

.profile-info p {
    font-size: 1.2em;
    margin: 10px 0;
    color: black;
}

/* Time and paper airplane positioning */
.time-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.time-display {
    font-size: 0.9em;
    color: #777; /* Grey color for time */
    margin-right: 10px; /* Spacing between text and paper airplane */
}

.paper-airplane-small {
    width: 15px; /* Smaller airplane */
    height: 15px;
    opacity: 0.8;
    margin-left: 10px; /* Extra spacing between airplane and time */
}

/* Fixing the social media section */
.right-column {
    flex: 1;
    background-color: #f4f4f4;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 15px;
}

.social-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    width: 80%; 
    height: 50px;  
    margin-bottom: 15px; 
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon {
    width: 24px; 
    height: 24px;
    margin-right: 10px;
}

.social-link:hover {
    transform: translateY(-3px); 
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.left-column, .right-column {
    flex: 1;
    padding: 10px;
}

/* Make left column stack for mobile */
@media (max-width: 768px) {
    .left-column, .right-column {
        flex: 1 100%; /* Stack items vertically on small screens */
        text-align: center; /* Center align for mobile */
    }

    .profile-pic {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px; /* Center the profile pic */
    }

    .profile-text {
        margin: 0 auto;
    }

    .profile-info h1 {
        font-size: 1.8em; /* Adjust font size for smaller screens */
    }

    .profile-info p {
        font-size: 1em; /* Adjust paragraph font size */
    }

    /* Adjust social media links for mobile */
    .social-link {
        width: 100%; /* Make links full-width on mobile */
        height: 45px;  /* Adjust height for mobile */
        padding: 8px 12px; /* Adjust padding for mobile */
        margin-bottom: 10px; /* Closer spacing */
    }

    .social-icon {
        width: 22px; /* Slightly smaller icons for mobile */
        height: 22px;
    }

    /* Make the paper airplane and time more mobile-friendly */
    .time-container {
        justify-content: center;
        margin-top: 15px;
    }

    .time-display {
        font-size: 0.85em; /* Slightly smaller text */
    }

    .paper-airplane-small {
        width: 12px;
        height: 12px;
    }
}
