@media screen {

div.ubermir a {
  color: black;
  text-decoration: none;
}

div.ubermir a:hover {
  background-color: #00CED1; 
  color: white; 
}

.modal-window {
  font-family: Calibri, sans-serif;
  font-size: 13pt;
  
  width: 100%;
  height: 100%;	

  position: fixed;
  background-color: rgba(75, 180, 180, 0.75);
  top: 0;
  right: 0;
  bottom: 0;
  
  left: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 2.0s;
  -moz-transition: all 2.0s;
  transition: all 2.0s;
  
  padding: 4em 4em 4em 4em;
}


.modal-window:target {
  opacity: 1;
  pointer-events: auto;
}

.modal-window div {
  width: 67%;
  height: 80%;
  top: auto;
  left:auto;
  position: absolute;
  margin: 0.5em auto;
  padding: 4px;
  background-color: rgba(210, 210, 210, 0.75);
  color: #444;
  border-radius: 0.5em 0.5em 0.5em 0.5em;
}

.modal-window header {
  font-weight: bold;
}

.modal-close {
  color: #585858;
  line-height: 50px;
  font-size: 120%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}

.modal-close:hover {
  color: #000;
}

.modal-window h1 {
  font-size: 200%;
  margin: 0 0 15px;
}

}
