body {
    color: #fefefe;
    width: 100%;
    text-align: center;
}

div.translate {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}

div.translate img {
    width: auto;
    margin: 0;
    height: 50px;
    position: absolute;
    right: 0;
    margin-right: 20px;
    border-radius: 16px;
}

div.translate img:hover {
    cursor: pointer;
    transform: scale(1.1);
    opacity: 80%;
}

section.widget {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0;
}

section.widget article {
    width: 95%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

section.widget article p {
    width: 90%;
}

section.widget article img {
    width: auto;
    height: 250px;
    border-radius: 6px;
}

section.widget article:nth-child(2) {
    margin-left: auto;
}

section.equipe {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;

    
    background-color: rgb(58, 58, 84);
    border-radius: 10px;
    padding: 8px;
    margin: 10px;
    margin-top: 50px;
}

section.equipe div#content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.equipe div#content p {
    width: 80%;
}

section.equipe div#gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 50%;
    column-gap: 4px;
}

section.equipe div#gallery img#emoji {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

section.equipe div#gallery p {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin: 0;
    margin-top: 4px;
}

section.equipe div#gallery img {
    height: 200px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
}

section.equipe div#gallery img#aya {
    object-position: center;
}

section.bye {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

section.bye p {
    font-size: 25px;
    width: 100%;
    text-align: center;
}

section.bye img {
    width: 175px;
    height: auto;
}