body{
    font-family: 'Brush Script MT', cursive;
}

/* Container for the whole page */
body .aboutme{
    display: flex;
    flex-direction: column; /* Stack sections vertically */
    gap: 20px; /* Space between personal and project sections */
    height: auto; /* Adjust height to fit content */
    border-radius: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Personal data section */
body .personal-section {
    display: flex;
    justify-content: space-between; /* Side-by-side layout for container and picture */
    align-items: flex-start;
    gap: 20px;
    min-height: 300px; /* Ensure same minimum height */
}

/* Project section */
body .project-section {
    display: flex;
    justify-content: space-between; /* Side-by-side layout for container and picture */
    align-items: flex-start;
    gap: 20px;
    min-height: 300px; /* Ensure same minimum height */
}

/* Container for personal data */
body .aboutmecontainer {
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 50px;
    width: 500px;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
}

/* Container for first project */
body .first-project-container {
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 50px;
    width: 500px;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
}

body .profile-picture {
    width: 300px; 
    height: 300px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin-top: 40px;
    margin-right: 70px;
    border: 2px solid #ccc; 
}

body .first-project-picture {
    width: 300px; 
    height: 300px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin-right: 70px;
    border: 2px solid #ccc; 
}


body .navbar {
    border: 1px solid #ddd;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}
