@charset "utf-8";
/* © 2023 CSS Document Edutips.nl */
/* Based on a template of W3Schools.com */

* {
  box-sizing: border-box;
}

body {
    font-family: Arial;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    background-color: #FFFBEF;	/* background-color: #F1F1F1; */
}

/* Header/Blog Title */
.header {
    padding: 30px;
    text-align: center;
    background-color: #FBF7DB;
    color: #412300;  /* background: white; #0C692E */
}

.header h1 {
    font-size: 50px;
    border-radius: 0;
}

.small {
	font-size: 9pt;
}

.center {
  text-align: center;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #871D1F;
} 

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #F3CDCE;
    color: black;
} 

.active {
    background-color: #A53737;	/* background-color: #F1CF5D; */	
}

.white { 
	color: white;
}

.links { color:firebrick;
	font-weight: bold;
	text-decoration: none;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
  line-height: 1.8em;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: #FFFBEF;
  padding-left: 20px;
}

/* Add a card effect for articles */
.card {
    background-color: white;
    padding-top: 20px;
    padding-right: 40px;
    padding-bottom: 20px;
    padding-left: 40px;
    margin-top: 20px;
    border-radius: 10px;
    color: #331001;
}

.card2 {
    background-color: #871D1F;
    padding: 20px;
	margin-top: 20px;
	color: white;
	border-radius: 10px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background-color: #F1D4D4;
    margin-top: 20px;
    border-radius: 10px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}
