:root { --text: #e9e9e9; --background: hsl(0, 0%, 15%); --dark-background: hsl(0, 0%, 10%); } @font-face { font-family: crfont; /* Nom de la police */ src: url('/src/fonts/bahnschrift.ttf') format('truetype'); /* Chemin vers votre fichier TTF */ /* Autres attributs de la police (facultatif) */ font-weight: normal; font-style: normal; } body { font-family: crfont, sans-serif; color: var(--text); margin: 0; } main { background: var(--background); width: 100%; margin: 0; min-height: 100em; } header, footer, nav { width: 100%; margin: 0; background: var(--dark-background); display: flex; } header, footer { justify-content: space-between; } .navitem { padding: 0.5em; } a { text-decoration: none; color: var(--text-color); } .content { width: 80%; margin: 0 auto; padding: 2em 0; } .pancontent { width: 90%; display: flex; margin: 0 auto; } .athena-container { padding: 1em 0; } .athena { height: 7em; border-radius: 3.5em; } .athena:hover { box-shadow: 0 0 15px rgba(255, 255, 255, 0.322); } .main-title { text-align: right; } .main-title .title { font-size: 3em; }