/* Version dark avec fond #0d0d0d, textes #f2f2f2 et accents #DA315A */

@font-face {
	font-family: 'Roboto', sans-serif;
	src: url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
}

body {
    background-color: #0d0d0d;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #f2f2f2;
}

#accueil {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    width: 100%;
}

#texte {
    position: absolute;
    color: #f2f2f2;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

#textaccueil:hover {
    text-decoration: underline;
    color: #DA315A;
}

#button_about_me {
    position: absolute;
    bottom: 5%;
}

img {
    width: 70px;
    height: 70px;
}

#aboutme {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f2f2f2;
    font-family: 'Roboto', sans-serif;
    padding: 20px;
}

#aboutme div {
    position: relative;
    background-color: #1a1a1a;
    width: 75%;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
    border-radius: 8px;
}

#aboutme h2 {
    color: #DA315A;
    font-size: 24px;
    margin-bottom: 10px;
}

#aboutme ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#aboutme ul li {
    margin: 10px 0;
}

#aboutme ul li a {
    text-decoration: none;
    color: #f2f2f2;
    font-size: 20px;
    transition: color 0.3s ease;
}

#aboutme ul li a:hover {
    color: #DA315A;
}

#accueil h1 {
    position: sticky;
    font-size: 50px;
    top: 5%;
    color: #f2f2f2;
    font-family: 'Roboto', sans-serif;
    float: left;
}

#initial {
    text-decoration: none;
    position: fixed;
    top: 10px;
    left: 10px;
    color: #f2f2f2;
    z-index: 1001;
    font-size: 24px;
}

nav {
    display: flex;
    justify-content: flex-end;
    font-family: 'Roboto', sans-serif;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #0d0d0d;
    padding: 10px;
    z-index: 1000;
}

#menu {
    position: relative;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #f2f2f2;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #DA315A;
}

/* Styles pour la page travaux.html */

section {
    margin: 20px 0;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
}

h2 {
    color: #DA315A;
    font-size: 24px;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

ul li {
    margin: 10px 0;
}

ul li a {
    text-decoration: none;
    color: #f2f2f2;
    font-size: 20px;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #DA315A;
}