@font-face {
    font-family: JetBrainsMono;
    src: url("/src/fonts/JetBrainsMono-Regular.ttf");
}

@font-face {
    font-family: JetBrainsMono;
    src: url("src/fonts/JetBrainsMono-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: JetBrainsMono;
    src: url("src/fonts/JetBrainsMono-Italic.ttf");
    font-style: italic;
}

@font-face {
    font-family: JetBrainsMono;
    src: url("src/fonts/JetBrainsMono-BoldItalic.ttf");
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: 'JetBrainsMono', sans-serif;
    margin: 0;
    background-color: #3F403F;
    background-size: 65px;
    color: #fceaff;
    background-image: url("src/images/background.png");
	background-repeat: round;
}

* {
    box-sizing: border-box;
}

#container {
    max-width: 1100px;
    margin: 0 auto;
	border-radius: 25px;
}

#header {
    width: 100%;
    height: 150px;
	border-radius: 25px;
   
}
#navbar {
	height: auto; /* let it grow with content */
	background-color: #9EBC9F;
	width: 100%;
	border-radius: 25px;
	margin-bottom: 10px;
	padding: 10px 0;
}

#navbar ul {
	display: flex;
	flex-wrap: wrap; /* this allows wrapping */
	padding: 0;
	margin: 0;
	list-style-type: none;
	justify-content: center; /* or space-evenly */
	gap: 10px; /* adds space between items */
}

#navbar li {
	padding: 5px 10px;
}

#navbar li a {
	color: #475841;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap; /* optional: prevents link text from breaking mid-word */
}

#navbar li a:hover {
	color: #d3b88c;
	text-decoration: underline;
	font-size: 22;
}

#flex {
    display: flex;
	border-radius: 25px;
}
aside {
    background-color: #9EBC9F;
    width: 230px;
    padding: 20px;
    font-size: smaller;
	border-radius: 25px;
}
main {
    background-color: #9EBC9F;
    flex: 1;
    padding: 20px;
    order: 2;
	border-radius: 25px 0px 0px 25px;
}
#rightSidebar {
    order: 3;
	border-radius: 0px 25px 25px 0px;
}

footer {
    background-color: #9EBC9F;
    font-family: 'JetBrainsMono', sans-serif;
	font-weight: bold;
	color: #475841;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
	border-radius: 25px;
}

h1{
	font-weight: bold;
	color: #9EBC9F;
	font-size: 40 px;
}
h2 {
	color: #475841;
	font-size: 25 px;
	padding-top: 0 px;
}
h3 {
    color: #475841;
	font-size: 20px;
}
h4 {
    color: #475841;
	
}

strong {
    color: #475841;
}
.box {
    background-color: #3F403F;
    border: 1px solid #475841;
    padding: px;
	border-radius: 15px 50px;
}

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-family: 'JetBrainsMono', sans-serif;
    font-size: smaller;
}

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}