* {
  margin:0;
  padding:0;
  font-family: 'Raleway', sans-serif;
  transition-duration: 500ms;
  font-family: 40pt;
}

body {
  overflow-y: hidden;  /* disable vertical scrolling */
}

canvas {
  cursor: pointer;
  position:absolute;
  top:52px;
  z-index: 1;
  transition-duration: 500ms;
  transition-property: opacity;
}

.description {
position: absolute;
  top: 200px;
  bottom: 200px;
  left: 200px;
  right: 200px;
  font-size: 18pt;
  font-weight: bold;
  color: #000;
  background: rgba(255, 255, 255, 0.50);
  text-align: justify;
  visibility: hidden;
  opacity: 0;
  transition: opacity .4s, visibility .02s;
  line-height: 1.8;
  z-index:9999;  /* push it all the way to the front */
}

img {
  display: none;
  max-height:60vh;
  max-width:50vw;
}

.info p {
  display: none;
}

.displayed-info {
  z-index: 999;
  position: absolute;
  color:black;
  /*margin-top: 750px;*/
  /*margin-left: 1100px;*/
  /*margin-right: 10px;*/
  bottom:20px;  /* position it from the bottom */
  right:20px; /* position it from the right */

  font-weight: bold;
  font-size: 18pt;
  text-shadow: 2px 2px 10px #fff;
  text-align: right;
}

.displayed-info a {
  color:black;
  text-decoration: none;
}

.displayed-info a:hover {
  color:blue;
}



    /* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #202020;
  font-family: Raleway;
}

/* Links inside the navbar */
.navbar a {
  float: right;
  font-size: 18px;
  color: white;
  text-align: center;
  padding: 16px 18px;
  text-decoration: none;
}

.brief:hover .description {
  visibility: visible;
  opacity: 1;
} 

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 17px 16px;
  background-color: inherit;
  font-family: inherit; 
  margin: 0; 
}

/* Add a blue background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: blue;
}

/* Dropdown content */
.dropdown-content {
  height:calc(100vh - 53px); /* height of the window minus the height of the nav bar */
  overflow:scroll;
  top:52px;  /* position it 52px from the top */
  z-index: 99999 !important;  /* make sure that the dropdown is always the furthest to the front */
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

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