/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
   


body {
  background-color: white;
  color: black;
  font-family: Verdana;
}



* {
  box-sizing: border-box;
  font-family: courier, serif;
}

body {
  margin: 0;
  --background-color:black;
  --color:red;
  --link-color:gold;
  background-color:var(--background-color);
  color:var(--color);
}

/* Style the header */
.header {
  background-color: var(--background-color);
  padding: 20px;
  text-align: center;
  font-family: serif;
  color:var(--color);
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* 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: #ddd;
  color: black;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
}

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

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
  


.sidebar {
  background-color: transparent;
  border: 3px solid var(--color);
  border-bottom: 0px;
}

.sidebar {
  
  clear: both;
  display: block;
  padding: 0;
}

.sidebar ul {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

.sidebar li {
  border: 3px solid var(--color);
  margin: -3px;
  padding: 5px 10px;
  background-color: var(--background-color);
  color:var(--color);
}

.sidebar h4 {
  color:var(--color);
}

a {
  color:var(--link-color);
}

}