@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body {
  padding: 20px;
  background-color:rgb(238, 238, 238);
  font-family: 'Open Sans';
}
/*#F1DA68, #00c3ce*/
a {
  text-decoration: none;
  color: #11d478;
}
a:hover {
  color: #0cd174;
}

p {
  margin: 4px 0;
}

p.tags{
	color:#11d478;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

pre {
  margin: 12px 0 24px;
  padding: 8px;
  background-color: #f0f0f0;
}

code {
  font-size: 0.9em;
  overflow: hidden !important;
}
code::before {
  display: none !important;
}

.lf {
  visibility: hidden;
}

.container {
  margin: 20px auto;
  padding: 25px 15px 25px;
  position: relative;
  top: 20px;
  box-sizing: border-box;
  width: 80%;
  opacity: 0;
  background-color: #fafafa;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.15);
  -webkit-animation: 1s phase;
  -moz-animation: 1s phase;
  animation: 1s phase;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.centerStuff{
	text-align:center;
}

.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
	border-radius: 12px;
	margin-bottom:0;
	font-weight:bold;
}

.buttonClose {
    background-color: white; 
    color: #f44336; 
    border: 2px solid #f44336;
}

.buttonClose:hover {
    background-color: #f44336;
    color: white;
}

.vidDisp{
	width: 50vw; 
    height: 26.25vw; /* 100/56.25 = 560/315 = 1.778 */
}

.container::before, .container::after {
  width: 10px;
  height: 10px;
  background-color: rgb(238, 238, 238);
  border-radius: 50%;
  box-shadow: inset 2px 2px 0 0 rgba(0, 0, 0, 0.2);
  content: '';
}
.container::before {
  position: absolute;
  top: 5px;
  left: 5px;
}
.container::after {
  position: absolute;
  top: 5px;
  right: 5px;
}
.container:nth-child(1) {
  padding-bottom: 10px;
}
.container:nth-child(2) {
  -webkit-animation-delay: 200ms;
  -moz-animation-delay: 200ms;
  animation-delay: 200ms;
}
.container:nth-child(3) {
  -webkit-animation-delay: 300ms;
  -moz-animation-delay: 300ms;
  animation-delay: 300ms;
}
.container:nth-child(4) {
  -webkit-animation-delay: 400ms;
  -moz-animation-delay: 400ms;
  animation-delay: 400ms;
}
.container:nth-child(5) {
  -webkit-animation-delay: 500ms;
  -moz-animation-delay: 500ms;
  animation-delay: 500ms;
}
.container:nth-child(6) {
  -webkit-animation-delay: 600ms;
  -moz-animation-delay: 600ms;
  animation-delay: 600ms;
}
.container:nth-child(7) {
  -webkit-animation-delay: 700ms;
  -moz-animation-delay: 700ms;
  animation-delay: 700ms;
}
.container:nth-child(8) {
  -webkit-animation-delay: 800ms;
  -moz-animation-delay: 800ms;
  animation-delay: 800ms;
}

h1, h2, h3 {
  margin: 0 0 4px 0;
}

.sub {
  color: #AE0F0E;
}

.twitter,
.version {
  font-size: 0.8em;
  text-align: right;
}
.twitter a,
.version a {
  opacity: 0.8;
}
.twitter a:hover,
.version a:hover {
  opacity: 1;
}

.run {
  padding: 4px;
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 40px;
  height: 20px;
  background-color: #AE0F0E;
  border-radius: 4px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.run:hover {
  background-color: #c61110;
}
.run:active {
  background-color: #960d0c;
  box-shadow: inset 0 0 4px 5px rgba(0, 0, 0, 0.2);
}
.run::before {
  content: "Run";
}

.final {
  text-align: center;
}

@-webkit-keyframes phase {
  33% {
    -webkit-transform: rotate(4deg);
  }
  66% {
    -webkit-transform: rotate(-4deg);
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-moz-keyframes phase {
  33% {
    -moz-transform: rotate(4deg);
  }
  66% {
    -moz-transform: rotate(-4deg);
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes phase {
  33% {
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -o-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  66% {
    -webkit-transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  100% {
    top: 0;
    opacity: 1;
  }
}