
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
body {
    --powder-petal: #fedec7ff;
  --cinnamon-wood: #b57957ff;
  --stone-brown: #5e5951ff;
  --blue-bell: #049dd9ff;
  --cerulean: #066f9cff;
            background: var(--powder-petal);
            font-family: "Orbitron", sans-serif;
}

.header {
  position: sticky;
  top: 0;
  padding: 10px 16px;
  background: var(--cinnamon-wood);
  color: #f1f1f1;
}

.column {
  float: left;
  width: 50%;
}

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

 /* Dropdown Button */
.dropbtn {
  background-color: var(--blue-bell);
  color: black;
  padding: 28px 22px;
  font-size: 16px;
  border: none;
  font-family: "Orbitron", sans-serif; 
}

.dropbtn-flash {
  background-color: #ff0000;
  color: black;
  padding: 28px 22px;
  font-size: 16px;
  border: none;
  font-family: "Orbitron", sans-serif; 
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  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 {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: var(--cerulean);}

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

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: var(--cerulean);} 

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn-flash {background-color: #990000; color: white} 
