body {
  background-image: url("../images/color.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

p {
	font-family: Racing Sans One;
	text-align: center;
}
h1 {
	width: 800px;
	height: 60px;
	margin: 5px auto;
	font-family: Racing Sans One;
	font-size: 32px;
	color: white;
	text-align: center;
	padding-top: 15px;
}
h2 {
	width: 800px;
	height: 50px;
	padding-top: 10px;
	margin: 5px auto;
	font-family: Racing Sans One;
	font-size: 24px;
	text-align: center;
}
a {color: blue;}
b {color: crimson;}

h3 {
	font-family: Arial;
	line-height: 10px; 
	font-size: 18px;
}

.portrait {
    display: block;
    margin: 25px auto;
    text-align: center;
    border-radius: 15px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); 
    width: 80%;
    max-width: 1000px;
}

.texte {
    flex-grow: 1; 
    flex-shrink: 0; 
    width: 30%; 
    font-size: 18px; 
    line-height: 1.6; 
    text-align: left; 
	font-family: Times New Roman;
}

.perso {
    margin: 20px 10px;
    border-radius: 20px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    display: block;
	 flex-grow: 1;
    justify-content: flex-end;
	background-attachment: fixed;
	 max-width: 600px;
	  height: 250;
}

.image-fin {
    display: flex;  
    justify-content: center;
    gap: 20px; 
}

.image-fin img {
    width: 700px; 
    height: auto; 
    border-radius: 10px; 
	 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.cadrage {
	margin: 10px 100px;
	padding: 5px;
}

.contributions {
    display: flex;
    align-items: center; 
	gap: 5%;
    margin: 40px 0;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.contributions:hover {
    background-color: transparent;
    transform: none;
}

.liens {
	margin: 5px 3px;
	padding: 0px 10px;
	border: 3px solid darkslategray;
	background-color: lavender;
}

.gouda {
	font-family: Arial;
	color: blue;
	text-align: center;
}

:root {
    --site-context-highlight-color: #1c69d4;
    --site-context-focus-color: #0653b6;
    --site-context-font: BMWTypeNextLatin, Helvetica, Arial, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
    --site-context-font-color: #262626;
    --site-context-theme-color: #fff;
    --site-context-metainfo-color: #757575;
    --site-context-disabled-color: #fff;
    --grid-max-width: 1600px;
    --grid-columns: 12;
    --grid-gap: 16px;
    --grid-gap-desktop: 24px;
    --grid-padding: 30px;
    --grid-padding-desktop: 100px;
    --grid-padding-wide: 120px;
}

.navbar {
    background-color: #000;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.navbar-logo img {
    height: 80px;
}

.navbar-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transition: width 0.3s;
}

.navbar-menu a:hover {
    color: #E75B00;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.content {
    padding-top: 100px; 
}
