* {
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box;
    --volund: rgb(255, 178, 0);
}

a {
    text-decoration: none;
    color: var(--volund);
    transition: all 0.3s;
}

a:hover {
    color: rgb(255, 212, 119);
}

.authors {
    text-align: center;
}

.authors div {
    justify-content: center;
    gap: 3em;
    display: flex;
}

.authors div div {
    display: block;
    /**/
}

.content {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: 2em;
    /* align-content: center; */
    justify-content: center;
}

code {
    background-color: rgb(24, 24, 24);
    padding: 3px;
    border-style: none;
    border-radius: 2px;
    font-size: 15px;
}

.presentation li {
    margin-bottom: 12px;
}

.presentation {
    padding-inline: 5em;
    /* justify-content: space-between; */
    gap: 5em;
    /* display: flex; */
}

.presentationline {
    padding-block: 2em;
    gap: 1em;
    display: flex;
    border-top: solid 1px rgb(24, 24, 24);
    justify-content: space-between;
}

.enum {
    color: var(--volund);
}


body {
    background-color: rgb(44, 44, 44);
    font-family: 'Franklin Gothic';
    color: aliceblue;
    margin: 0;
}

.profile {
    border-radius: 50%;
}

.frames {
    display: flex;
    gap: 2em;
}

.frames img {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.frames img:hover {
    transform: scale(1.05);
}

.volund {
    font-size: 2em;
    display: block;
    text-align: center;
    align-content: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    /* Flexbox pour disposer les blocs horizontalement */
    align-items: center;
    /* Centre verticalement les blocs */
    justify-content: space-between;
    /* Espace entre le bloc gauche et le bloc droit */
    padding: 5px 20px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: rgb(24, 24, 24);
}
.leftheader {
    display: flex;
    /* Permet de disposer les éléments à l'intérieur horizontalement */
    align-items: center;
    /* Centre verticalement les éléments */
    gap: 15px;
}

.leftheader a {
    text-decoration: none;
    color: aliceblue;
    align-items: center;
    gap: 15px;
    display: flex;
}

.rightheader {
    display: flex;
    /* Dispose les liens horizontalement */
    align-items: center;
    /* Centre verticalement les liens */
    gap: 20px;
    /* Espace entre chaque lien */
}

.rightheader a {
    display: flex;
    text-decoration: none;
    color: aliceblue;
    font-size: 1em;
    transition: color 0.3s;
}

.rightheader a:hover {
    color: var(--volund);
}

.rightheader a.addlink {
    background-color: var(--volund);
    padding: 0.7em;
    font-weight: bolder;
    border-style: hidden;
    color: rgb(51, 52, 53);
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.rightheader a.addlink:hover {
    background-color: rgb(199, 129, 0);
}

footer {
    bottom: 0;
    left: 0;
    right: 0;
    gap: 10px;
    padding: 1em;
    background-color: rgb(24, 24, 24);
    display: grid;
    justify-content: center;
    text-align: center;
}

footer a {
    text-decoration: none;
    /* margin-bottom: 0.5em; */
    color: var(--volund);
}