/* General styling */
body {
    font-family: 'Poppins', sans-serif; /* Modern, slim font */
    margin: 0;
    padding: 0;
    background-color: #212121; /* Black background */
    color: #ffebcd; /* Blanched Almond for readability */
}

/* Container styling */
.container {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #212121; /* Black for contrast */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin: 40px auto;
    max-width: 1200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .profile-picture {
        width: 100%;
        height: auto;
    }

    .text-block {
        max-width: 100%;
    }
}

/* Profile section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

/* Profile picture */
.profile-picture {
    width: 400px; /* Larger width */
    height: 400px; /* Larger height */
    object-fit: contain;
    margin-bottom: 10px;
    border: none; /* No border */
}

/* Contact info */
.contact-info {
    text-align: left;
    color: #d3d3d3; /* Light gray for better contrast */
}

.contact-info p {
    display: flex;
    align-items: left;
    margin: 5px 0;
}

.contact-info .material-icons {
    font-size: 20px;
    margin-right: 8px;
    color: #ffffff; /* White icons */
}

.contact-info a {
    text-decoration: none;
    color: #1e90ff; /* Light blue for contrast */
}

/* Text block */
.text-block {
    max-width: 800px;
}

/* Header styling */
h1 {
    font-size: 1.8em;
    margin: 0;
}

/* Paragraph styling */
p {
    font-size: 1em;
    line-height: 1.6;
}
u1 {
    font-size: 1em;
    line-height: 1.6;
}