body {
    text-align: center;
    background-color: rgb(209, 38, 243);
}

#main-header {
    background-color: #3498db;
    color: #fff;
    padding: 20px;
}

.main-title {
    font-family: 'Titillium Web', sans-serif; 
}

#work-section, #colleagues-section, #code-section {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #3498db;
}

p {
    line-height: 1.6;
}

.work-image, .colleagues-image, .code-image {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    height: 300px; /* Ajustement de la hauteur à 400px */
    transition: transform 0.3s ease-in-out;
}

.work-image:hover, .colleagues-image:hover, .code-image:hover {
    transform: scale(1.1); 
}

.work-description, .colleagues-description, .code-description {
    font-family: 'Open Sans', sans-serif; 
}