body {
    text-align: center;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #dae2f8, #d6a4a4);
    color: #333;
}

header {
    background-color: #0056b3;
    color: white;
    padding: 15px 0;
    font-size: 1.8em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 50%; 
	width: 50%; 
	margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.profile-img {
    width: 150px; /* Reduced size */
    height: 150px; /* Ensuring it remains proportional */
    border-radius: 50%;
    display: block;
    margin: 20px auto;
    border: 4px solid #0056b3;
}

h1, h2 {
    color: #0056b3;
}

.section {
    margin-bottom: 20px;
    text-align: left;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 0.9em;
}
