@charset "UTF-8";
/*
Theme Name: Tesseractes 
Author: Céline Dhordain
Author URI: https://www.dhordain.dev
Description: Theme pour le blog de Céline Dhordain
Version: 0.0.1
*/

body {
    font-family: sans-serif;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    background-color: red;
    padding: 2rem;
}

.menu-item {
    margin: 1rem;
    padding: 1rem;
    background-color: green;
}

.menu-item:hover {
    background-color: blue;
}

code {
  background-color: #1e1e1e; /* fond sombre */
  color: #dcdcdc; /* texte clair */
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 0.95em;
}