/* ==================== POLICE ==================== */
/* Lato est chargé via Google Fonts dans le <head> */
body, p, td, th, tr, a, h1, h2, h3, h4, strong, em, span {
    font-family: 'Lato', Verdana, Helvetica, sans-serif;
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ==================== LIENS ==================== */
a {
    color: #c00;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #900;
    text-decoration: underline;
}

/* ==================== TITRES ==================== */
h1, h2, h3, h4 {
    font-family: 'Lato', Verdana, Helvetica, sans-serif;
    font-weight: 700;
    color: #333;
    margin: 20px 0 10px 0;
}

h2 {
    font-size: 28px;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

/* ==================== CLASSES SPÉCIALES ==================== */
.papertitle {
    font-family: 'Lato', Verdana, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.name {
    font-family: 'Lato', Verdana, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 32px;
    padding-top: 20px;
}

/* ==================== IMAGES ET EFFETS ==================== */
.one {
    width: 160px;
    height: 160px;
    position: relative;
}

.two {
    width: 160px;
    height: 160px;
    position: absolute;
    transition: opacity .2s ease-in-out;
}

.fade {
    transition: opacity .2s ease-in-out;
}

span.highlight {
    background-color: #ffffd0;
}

.colored-box {
    color: black;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
}



.profile {
  display: flex;
  align-items: center;
  gap: 20px; /* espace entre la photo et le texte */
  margin-bottom: 30px;
}

.profile-pic {
  width: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-text {
  flex: 1;
}

