/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* body {
  background-color: white;
  color: black;
  font-family: Verdana;
} */

body {
  background-color: #808080;
  background-image: url(images/background.png);
  background-repeat: no-repeat;
  background-size: cover;
}

a:link {
  color: red;
  text-decoration: none;
}

a:visited	{
  color: yellow;
  text-decoration: none;
}

blink {
  animation: blinker 0.6s linear infinite;
}

@keyframes blinker {  
  50% { opacity: 0; }
}

#showUrl {
  border: none;
  height: 100%;
  width: 797px;
}
      
#url {
  width: 618px;
  height: 13px
}
      
.dropbtn {
  background-color: transparent;
  font-family: 'Microsoft Sans Serif', 'Arial', 'Helvetica', sans-serif, sans;
  color: black;
  padding: 3px;
  font-size: 11px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  font-family: 'Microsoft Sans Serif', 'Arial', 'Helvetica', sans-serif, sans;
  font-size: 11px; 
  display: none;
  position: absolute;
  background-color: #d4d0c8;
  border: 1px solid black;
  min-width: 210px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 4px 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #0a246a; color: white;}
.dropdown:hover .dropbtn {background-color: transparent;}      

.show {display: block;}      
