html {
  height: 100%;
  width: 100%;
}

body{
  background-color:#F8F0E3;
  font-family: 'Ubuntu Mono', monospace;
}

.dashed-hr {
  border: none;
  border-top: 1px dashed #000; /* You can change the color by modifying the hex code (#000) */
}


p{
  font-family: 'Ubuntu Mono', monospace;
}

h1{
  text-align: center;
  font-family: 'Ubuntu Mono', monospace;
}

h3{
  font-family: 'Ubuntu Mono', monospace;
  text-align: center;;
}

video {
  display: none;
}


.retroButton{
  background-color: buttonface;
                  border: 2px outset buttonface;
                  color: buttontext;
                  padding: 3px 6px;
                  text-align: center;
                  text-decoration: none;
                  display: inline-block;
                  font-size: 13px;
                  margin: 4px 2px;
                  cursor: pointer;
}

.center {
    margin: auto;
    width: 60%;
    border: 3px solid black;
    padding: 10px;
    margin-bottom: 15px;
    background-color: white;
    word-break: break-all;
}

/* Media query for screens with a maximum width of 600px */
@media (max-width: 600px) {
    .center {
        width: 90%; /* Adjust the width for smaller screens */
    }
}

#canvasElement {
    width: 25%; /* Set the width as a percentage of its container */
    max-width: 200px; /* Set a maximum width in pixels (adjust as needed) */
}

.topnav {
  overflow: hidden;
  
}

.topnav a {
  float: left;
  color: black;
  text-align: center;
  padding: 14px 16px;
  
  font-size: 17px;
  font-family: mono;
}

.topnav a:hover {
  color: black;
  font-family: ubu;
}

.topnav a.active {
  color: black;
  font-family: ubu;
}
    
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 18px;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: mono;
  margin: 0;
  text-decoration: underline
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: tan;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

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

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

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





