@import url('https://fonts.googleapis.com/css2?family=Mali:wght@300&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Mali', 'Verdana', sans-serif;
  font-size: 15px;
  padding: 10px;
  background: #34051e;
}

/* unvisited link */
a:link {
  color: darkgreen;
}

/* visited link */
a:visited {
  color: darkgreen;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: black;
}


/* Header/Blog Title */
.header {
  padding: 1px;
  text-align: center;
  background: #480726;
  color: #FFFFFF;
  margin: auto;
  width: 80%;
  background-image: url("headerbg.png");
  background-repeat: no-repeat;
}

.header h1 {
  font-size: 55px;
  
}

/* Style the top navigation bar */
.topnav {
  font-size: 18px;
  text-align: center;
  overflow: hidden;
  background-color: #aaa;
  margin: auto;
  width: 80%;
}

/* Style the topnav links */
.topnav a {
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnavsubmenu {
  font-size: 16px;
  text-align: center;
  overflow: hidden;
  background-color: #b494a5;
  margin: auto;
  width: 80%;
  color: #000;
}

/* Style the topnav links */
.topnavsubmenu a {
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
  padding: 5px 5px;
  text-decoration: none;
}

/* Change color on hover */
.topnavsubmenu a:hover {
  background-color: #ddd;
  color: black;
}





/* Create two unequal columns that floats next to each other */
/* Left column */
.widecolumn {   
  margin: auto;
  width: 80%;
}

/* Right column */
.narrowcolumn {
  float: left;
  width: 25%;
  background-color: #f1f1f1;
  padding-left: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 0px;
}

/* Add a card effect for articles */
.card2 {
  background-color: white;
  padding: 20px;
  margin-top: 0px;
  overflow: auto;
  height:400px;
  border-style: dotted;
  margin: auto;
  width: 80%;
}

/* Add a card effect for articles */
.card3 {
  background-color: white;
  padding: 20px;
  margin-top: 0px;
  overflow: hidden;
  height:400px;
  border-style: dotted;
  margin: auto;
  width: 80%;
}


/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  font-size: 13px;
  padding: 20px;
  text-align: center;
  background: #aaa;
  margin-top: 20px;
  margin: auto;
  width: 80%;
}

.footer a {
  color: black;
}

/* visited link */
.footer a:visited {
  color: black;
}

/* mouse over link */
.footer a:hover {
  color: white;
}

/* selected link */
.footer a:active {
  color: black;
}
  





/* 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%;
  }
}


.hidden-div {
        display: none;
    }
