body {
    margin: 0px;
    background-color: #f3eae8;
}

.bold {
    font-weight: bold;
}#top {
    margin: 0px;
    padding: 0px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.headerTitle {
    width: 25%;
    min-width: 300px;
}

.headerTitle p {    
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 36px;
    font-weight: bold;

    color: #000000;
    text-shadow: #000000 0 0 4px;
    text-align: center;

    margin: 10px;
    margin-top: 5px;
}

.headerNavigation {
    width: 75%;
    min-width: 500px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.headerNavigationElement {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    
    text-align: center;
}

.headerNavigationElement a {
    color: #000000;
    text-decoration: none;
}

.headerNavigationElement a:hover {
    color: #000000;
    text-shadow: #000000 0 0 15px;
    text-decoration: underline;
}

.article {
    width: 90%;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 4.5%;
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
    border: black 4px solid;
}

.title {
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
}
.title p {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.authors, .conference {
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
}
.authors p, .conference p {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.ressources {
    width: 90%;
    margin-top: 30px;
    margin-left: 5%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.ressource {
    width: 45%;
    background-color: white;
    border: black 4px solid;
}
.ressourceTitle {
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
}
.ressourceTitle p {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.links {
    width: 90%;
    margin-left: 5%;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.link {
    width: 45%;
    background-color: rgb(192, 192, 192);
    border: 3px solid rgb(92, 92, 92);
    border-radius: 5px;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
}
.link:hover {
    background-color: rgb(255, 255, 255);
    border: 3px solid rgb(128, 128, 128);
}
.link a {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.images {
    width: 100%;
    margin-bottom: 15px;
    margin-top: 30px;
}

.imagesTitle {
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
}
.imagesTitle p {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.imageGroup {
    width: 92%;
    margin-left: 4%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
} 

.image {
    width: 30%;
}

.image img {
    width : 100%;
}