body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('lidi.jpg'); /* Add the path to your flower image */
    background-size: cover;
    background-attachment: fixed;
    background-color: rgba(255, 255, 255, 0.203); /* Adjust the transparency (0.8 in this example) */
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    display: flex;
    align-items: center; /* Center the text vertically */
    justify-content: center; /* Center the text horizontally */
}
header img {
    margin-right: 20px; /* Add margin to the right of the image to keep it on the left */
}
.center {
    padding: 70px 70px;
    border: 3px solid green;
    text-align: center;
  }
.name {
    font-size: 24px;
    margin-bottom: 10px; /* Adjust the value to control the amount of space between the name and the following sentence */
}
   
/* Style for the References section */
.reference-links {
    display: flex;
    justify-content: left;
    align-items: center;
}

.reference-links a {
    margin: 0 10px; /* Adjust the spacing between the images */
}

.reference-image {
    width: 60px; /* Adjust the image width as needed */
    height: 60px; /* Adjust the image height as needed */
}




.position {
    font-size: 16px;
    text-align: center;
}

.container {
    margin: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Background for content with some transparency */
    padding: 20px;
}

.section {
    margin-top: 20px;
}

.section h2 {
    margin: 0;
    font-size: 20px;
}

.section ul {
    list-style-type: none;
    padding: 0;
}

.section li {
    margin-bottom: 10px;
}
/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    /* Adjust styles for smaller screens here */
    .center {
        padding: 10% 5%;
    }
}

@media screen and (max-width: 480px) {
    /* Adjust styles for even smaller screens here */
    .center {
        padding: 15% 5%;
    }
    .name {
        font-size: 20px;
    }
    .position {
        font-size: 14px;
    }
    .container {
        margin: 5%;
        padding: 5%;
    }
    .section h2 {
        font-size: 18px;
    }
}
