@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/fonts/IBMPlexMono-Regular.woff2') format('woff2'),
         url('/fonts/IBMPlexMono-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: #fff5e6; /* Set the background color */
}

header {
    background-color: white;
    color: white;
    text-align: left;
    padding: 1em;
    height: 10vh; /* Makes the header take up half of the viewport height */ 
	
}
footer {
    background-color: #fff5e6;
    color: black;
    text-align: left;
    padding: 1em;
    height: 10vh;
    border-top: 1px solid lightgray;
	
}
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 1em;
}
.text-black {
            color: black; /* Apply black color to "lanquetin" */
        }

.text-orange {
            color: orange; /* Example of a specific shade of orange */
        }

.text-custom-grey {
  color: #6b7280;
			
		}       
        body {
            font-family: 'IBM Plex Mono', monospace;
            background-color: #fff5e6;
            color: #333;
            padding: 20px;
            line-height: 1.6;
        }

        header {
            background-color: white;
            color: white;
            text-align: center;
            padding: 1em;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav ul {
            list-style-type: none;
            padding: 0;
        }

        nav ul li {
            display: inline;
            margin: 0 1em;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
        }

        .language-select {
            background: #D6D5D3;
            border: 1px solid orange;
            color: black;
            padding: 5px;
            border-radius: 5px;
        }

        .footer {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px 0;
        }

        .highlight {
            color: orange;
        }

.box {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 16px 20px;
}
    