@import "/inc/blogs.css";  /* styles common across blog articles */

.clue {
  margin-bottom: 1em;
  padding: 1em 2em;
  background-color: tan;
}

/* part 5 - global */
#website table {
  margin: auto;
  text-align: left;
  font-size: medium;
  border: 0;
}
#website td { border: 0; }

#map ul { list-style: none; }
#map .poland { color: #d4213d; }
#map .france { color: #008000; }
#map .korea { color: #800080; }
#map .usa { color: #002868; }
#map .aus { color: #d2691e; }

.dual_consoles {
  display: inline-block;
  margin: 1em;
  width: 25em;  height: 15em;
}

@keyframes countdown_frames {
  from{ opacity: 1; }
  to{   opacity: 0; }
}

#countdown {
  position: fixed;
  top: 1em;  left: 50%;
  box-sizing: content-box;
  width: 80px;  height: 60px;
  background-image: url("/content/rights/cicada/05-global/gadget_sm.gif");
  text-align: center;
  font-size: 32pt;
  color: red;  background-color: transparent;
  border: 5px solid red;
  border-radius: 10px;
  animation-name: countdown_frames;
  animation-duration: 1s;
  animation-iteration-count: 30;
  animation-timing-function: ease-in;
}

/*
#countdown:after {
    content: "";
    position:absolute;
    width: 0px; height: 0px;
    bottom: -25px;  left: 50%;
    margin-left: -25px;
    border-left:  25px solid transparent;
    border-right: 25px solid transparent;
    border-top:   25px solid black;
}
*/
