/* style.css */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background: #f4f4f4;
    margin: 0;
    padding: 0;

    background-image: url('images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.container {
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

header {
    background: #0056b3;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0 0 5px;
    font-size: 2.5em;
}

header p {
    margin: 0;
    font-size: 1.2em;
}

section {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2

#about {
    position: relative;  /* Establishes a positioning context */
    padding: 20px;
}

.profile-container {
    position: absolute;  /* Absolutely position within #about */
    top: 10px;  /* Distance from the top of the #about section */
    right: 10px;  /* Distance from the right side of the #about section */
}

.profile-pic {
    width: 100px;  /* Maximum width */
    height: 100px;  /* Maximum height */
    border-radius: 50%;  /* Circular image */
    object-fit: cover;  /* Ensures the image covers the area without distortion */
}

