html {
  font-family: 'Courier New', Courier, monospace;
}

body {
  background-color: lightgray;
  font-size: 20px;
}

hr {
  border: 1px solid rgb(55, 55, 55);
}

h1 {
  text-align: center;
}

a:link {
  color: rgb(27, 27, 27);
}

a:visited {
  color: rgb(0, 0, 0);
}

a:hover {
  color: rgb(67, 67, 67);
}

a:active {
  color: rgb(132, 132, 132);
}

/* Navbar container */
.navbar {
  min-height: 47px;
  background-color: #333;
  border-radius: 7px;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  border-radius: 7px;
}

/* The dropdown container */
.dropdown {
  float: left;
  min-height:47px;
  border-radius: 7px;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
  border-radius: 7px;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: rgb(103, 103, 103);
}

/* Dropdown content (hidden by default) */
.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;
  border-radius: 7px;
}

/* 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;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: sticky;
  top: 0;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}

footer {
  position: sticky;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  border-radius: 7px;
}

.typewriter {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .1em; /* Adjust as needed */
  animation: typing 3.5s steps(40, end);
}


@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}