/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Crimson+Pro&display=swap');

/* Apply fonts and colors to elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Righteous', cursive;
  color: #348feb; /* Blue color */
}

p, span, ol, ul, table, th, td, div {
  font-family: 'Crimson Pro', serif;
}


/* Set the default color theme */
:root {
  --background-color: #fff;
  --text-color: #212121;
  --accent-color: #2196f3;
}

/* Set the body font and background color, and add some margin */
body {
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 1rem;
}

/* Set the header styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: var(--background-color);
  color: var(--text-color);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

.nav {
  display: flex;
}

.nav a {
  margin-right: 1rem;
  color: var(--accent-color);
  text-decoration: underline;
}

/* Set the main content styles, and add some margin */
.main {
  padding: 1rem;
  margin: 0 0 2rem 0;
}

.article {
  margin-bottom: 2rem;
}

.article h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.article p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}

/* Set the sidebar styles, and add some margin */
.sidebar {
  padding: 1rem;
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0 0 2rem 0;
}

.widget {
  margin-bottom: 2rem;
}

.widget h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget li {
  margin-bottom: 0.5rem;
}

/* Set the light color theme */
.light {
  --background-color: #f8f9fa;
  --text-color: #212121;
  --accent-color: #2196f3;
}

/* Set the hyperlink hover styles */
a:hover {
  text-decoration: underline;
  color: #2962ff;
}

/* Set the header hyperlink styles */
header a {
  color: #212121;
  text-decoration: underline;
}

header a:hover {
  text-decoration: none;
  color: #2962ff;
}

/* Set the header logo color */
header .logo {
  color: #212121;
}

.container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.side-menu {
  width: 150px;
  background-color: #f1f1f1;
  padding: 20px;
  font-family: 'Righteous', cursive;
  color: #348feb; /* Blue color */
}

.side-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  margin-bottom: 10px;
}

.side-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #348feb;
  font-size: 18px; /* Larger font size */
  font-weight: bold; /* Bolder font weight */
}

.side-menu a:hover {
  background-color: #ddd;
}

.main-content {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.box {
    border: 2px solid black;  /* Creates the border of the box */
    padding: 20px;            /* Adds space inside the box */
    margin: 20px;             /* Adds space outside the box */
    width: fit-content;       /* Adjusts the width of the box to fit the content */
    background-color: #61fcff; /* Optional: Adds a background color to the box */
}



