body{
  background-color:#000;
  font-family: verdana, arial;
  cursor:progress;
  padding-bottom:1em;
  margin:0;
}
a{ color:#fff; }
.logo--image{
  width: 300px;
  height: auto;
}

#clockdiv{
  font-size:6em;
  font-weight:bold;
  font-family:  Courier, 'Courier New', 'Lucida Console', Monaco, Consolas, verdana;
  
}
.admiral-ackbar{
  max-width:650px;
  margin:0 auto;
  text-align: center;
  color:#f1f1f1;
}
.warning{
  font-size: 2em;
  border: 3px solid #a22;
  padding:2px;
  border-box: outside;
  
}
.warning--inner{
  background-color: #aaa;
  padding:1em;
}
.clock--container{
  margin:0 auto;
  text-align: center;
  display: inline-block;
}

.warning-text{
  color:#c00;
}
.progressbar{
  border:1px solid #f00;
  padding:1px;
  position: relative;
}
.progressbar::after{
  content:"";
  height:3em;
  display: block;
  width:0;
  background-color:#36a;
  animation-name: example;
  animation-duration: 30s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  box-sizing: border-box;
}
@keyframes example {
    0% {width: 0%;}
    20% {width: 10%;}
    50% {width: 30%;}
    70% {width: 70%;}
    80% {width: 80%;}
    100% {width: 100%;}
} 
.cancel-button{
  border:1px solid #fafafa;
  display: inline-block;
  padding:.5em;
  border-radius:.5em;
  position: absolute;
  left:50%;
  top:50%;
  transform: translateX(-50%) translateY(-50%);
 
}
.cancel-button::before{
  content:"Cancel";
}
.cancel-button:hover::before{
  cursor: pointer;
}

.cancel-button:focus::before,
.cancel-button:active::before{
  cursor: pointer;
  content:"This isn't actually downloading anything.";
}
.content{
  max-width:960px;
  margin:5em auto;
  min-height:20em;
  background-color:#eaeaea;
}
.buttons {
  text-align: center;
}
.buttons a{
  display: inline-block;
  font-size:1.5em;
  text-decoration: none;
  padding:.5em;
  border-radius: 1em;
  border: 1px solid #fff;

}
.buttons a:hover{
background-color:#333;
}
.main-content{
  text-align: left;
}
.main-content ol li + li{

}
.main-content ol{
border:2px solid #333;
padding:.5em
}
.main-content ol li{
list-style-position:inside;
padding-bottom:.5em;
padding-top:.5em;

}
.main-content ol li + li{
border-top:1px solid #333
}
.banner{
width:100%;
height:60vh;
margin-bottom:-30vh;

background-image:url(../files/banner.jpg);
background-repeat:no-repeat;
background-size:cover;
background-position:bottom center;
}

.admiral-ackbar{
 background-color:rgba(0,0,0,.6);
 padding:2em;
}

.logo{
  text-align: center;
  margin-top:1em;
  margin-bottom:1em;
}
.logo a{
  display: inline-block;
}
.logo img{
  display: inline-block;
}