@font-face {
  font-family: "Vollkorn";
  src:url("./Vollkorn/static/Vollkorn-Regular.ttf");
}

@font-face {
  font-family: "Vollkorn-bold";
  src:url("./Vollkorn/static/Vollkorn-Black.ttf");
}


body {
    font-family: 'Vollkorn', serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

header {
    background-color: #3b739a;
    color: white;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

a {
  color:#d31d1d
}

a:hover {
  color:#a00e0e ; 
  font-weight : bold ; 
}


main {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

section {
    padding: 2rem;
    border: 1px solid #bd4848;
    border-radius: 8px;
}


p {
    text-align : justify;
}


.active {
    background-color: #9e0000;
}



.important {
  font-weight: bold;
  border: 2px solid black ;
  margin: 1px;
  padding: 10px;
}

.bold {
  font-family: "Vollkorn-bold";
}

.definition {
  font-weight: bold;
  text-decoration-line: underline;
}

.boxed {



}

.container {
  display: flex;
  justify-content: center;
  vertical-align: top;
 }









 /* The navigation menu */
.navbar {
  overflow: hidden;
  background-color: #333;

}

/* Navigation links */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 14px 16px;
  text-decoration: none;
  align-items: center;

}


/* The subnavigation menu */
.subnav {
  float: left;
  overflow: hidden;
}

/* Subnav button */
.subnav .subnavbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}



/* Add a red background color to navigation links on hover */
.navbar a:hover, .subnav:hover .subnavbtn {
  background-color: #bd1c1c;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: #d43f3f;
  width: 100%;
  z-index: 1;
}

/* Style the subnav links */
.subnav-content a {
  float: left;
  color: white;
  text-decoration: none;
}

/* Add a grey background color on hover */
.subnav-content a:hover {
  background-color: #ececec;
  color: black;
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  display: block;
} 


/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}


.dropdown .dropbtn:hover {
    background-color: #bd1c1c;

}


/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ebd2d2;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}