body {
  background-color: #eee;
}

h2 {
  font-size: 1.75em;
  margin-bottom: 0.25em;
  margin-top: 0.5em;
  text-align: center;
}

h4 {
  font-size: 1.25em;
  margin-bottom: 0.25em;
  margin-top: 0.5em;
  text-align: center;
}

p {
  font-size: 1.0em;
  margin-bottom: 0.75em;
  margin-top: 0.25em;
  text-align: center;
}

ul {
  list-style-type: none;
  margin-top: 0.5em;
  padding: 0;
  text-align: center;
}

li {

}

ul li div {
  display: inline-block;
  text-align: center;
  width: 20px;
}

a {
  color: #008acf;
  text-decoration: none;
}

a:hover, a:focus {
  color: #00689c;
  text-decoration: underline;
}

button {
  border-radius: 5px;
  box-shadow: 0 1px #b6e6ff inset;
  background: #03abff;
  background-image: linear-gradient(bottom, #03abff, #008acf);
  border: 1px solid #008acf;
  color: white;
  cursor: pointer;
  font-size: 1.10em;
  font-weight: bold;
  margin-bottom: 5px;
  outline: none;
  padding: 7px 10px 7px 10px;
  text-align: center;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
}

button:hover {
  background: #36bcff;
  background-image: linear-gradient(bottom, #36bcff, #03abff);
}

button:active {
  background: #008acf;
  background-image: linear-gradient(bottom, #008acf, #00689c);
}

audio {
  display: none;
  height: 0;
  width: 0;
}

input {
  font-size: 1.25em;
  margin-left: 10px;
  margin-right: 10px;
  padding: 5px;
}

@media screen and (max-width: 480px) {
  input {
    width: 110px;
  }
}


footer {
  line-height: 0.5em;
  margin-bottom: 3em;
  margin-top: 3em;
}


select {
  display: block;
  font-size: 1.0em;
  margin: 0 auto;
  margin-top: 1.75em;
  text-align: center;
}


.status-none {
  color: #333333;
  font-size: 1.75em;
  margin-right: 10px;
}

.status-no {
  color: #b04030;
  font-size: 2.0em;
  font-weight: bold;
  margin-right: 10px;
}

.status-yes {
  color: #30b040;
  font-size: 1.5em;
  margin-right: 10px;
}

.center {
  display: block;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.popup-underlay {
  background-color: rgba(0, 0, 0, 0.75);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.popup {
  background-color: #dddddd;
  border: 3px solid white;
  border-radius: 15px;
  color: #111111;
  left: 25%;
  padding: 10px;
  position: fixed;
  text-align: center;
  top: 25%;
  width: 50%;
  z-index: 20;
}

@media screen and (max-width: 480px) {
  .popup {
    left: 10%;
    width: 70%;
  }
}


.popup button {
  padding-left: 1.5em;
  padding-right: 1.5em;
}


.star {
  font-size: 2em;
  position: absolute;
  top: 0;
}


.starBlowOutAnim {
  animation: starBlowOutAnimFrames linear 2.5s;
  animation-iteration-count: 1;

  -webkit-animation: starBlowOutAnimFrames linear 2.5s;
  -webkit-animation-iteration-count: 1;
}


@keyframes starBlowOutAnimFrames {
  0% {
    opacity:1;
    transform: rotate(0deg) scale(1) scaleY(1);
    transform-origin: 50% 50%;
  }

  100% {
    opacity: 0.10;
    transform: translateY(525px) rotate(540deg) scale(4);
    transform-origin: 50% 50%;
  }
}


@-webkit-keyframes starBlowOutAnimFrames {
  0% {
    opacity:1;
    -webkit-transform: rotate(0deg) scale(1) scaleY(1);
    -webkit-transform-origin: 50% 50%;
  }

  100% {
    opacity: 0.10;
    -webkit-transform: translateY(525px) rotate(540deg) scale(4);
    -webkit-transform-origin: 50% 50%;
  }
}

