* {
  box-sizing: border-box;
}

body {
  background-color: #000;
  color:#bfff80;
  margin: 0;
}

a:link {
  color: #ffff80;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #00ff80;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #ffff36;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #ff8000;
  background-color: transparent;
  text-decoration: underline;
}

h1 {
   color: #bfff80;
}
 
h2 {
   color: #bfff80;
   text-align: center;
}
 
h3 {
   color: #bfff80;
   text-align: center;
}

html {
  scroll-behavior: smooth;
}

.flex-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #000;
}

.flex-container > div {
  background-color: #000;
  width: 389px;
  margin: 8px;
  text-align: left;
  line-height: 24px;
  font-size: 18px;
}

p.paragraph {
   font-family: Tahoma, Verdana, sans-serif;
   letter-spacing: .8px;
   color: #bfff80;
}

/* Style the header */
.header {
  background-color: #000;
  padding: 13px;
  text-align: center;
}

mark {
  background-color: #99ff66;
  color: #000;
}

span {
  background-color: #00ff80; 
  color: #131313;
  text-decoration: underline;
}

/* Style the top navigation bar */

body > .row > [class*='coffee-span-'].nav-bar {
  padding-top: 1.75em;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333231;
}

.container {
  position: relative;
  float: right;
  color: white;
}

top-right {
  position: inherit;
  top: 8px;
  right: 16px;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: #bfff80;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #131313;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #313131;
  max-width: 100%;
  height: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #bfff80;
  padding: 12px 16px;
  text-decoration: underline;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #321123;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.container {
  position: relative;
  text-align: center;
}

.top-right {
  background-color: #bfff80; 
  position: absolute;
  top: 2px;
  right: 2px;
}

/* Create three unequal columns that floats next to each other */
.column {
  background-color: #000;
  color: #bfff80;
  float: left;
  padding: 10px;
}

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

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

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

.footer {
  color: rgba(35, 31, 35);
  background-color: #000;
  text-align: center;
  padding: 10px;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 680px) {
  .column.side, .column.middle {
    width: 100%;
  }
}