body {
  font-family: Arial, sans-serif;
  background: url(../images/coffee.jpg);
  background-size: cover; }

h1 {
  text-align: center;
  font-family: Tahoma, Arial, sans-serif;
  color: burlywood;
  margin: 100px 0;
  font-size: 48pt; }

#header {
  width: 500px;
  height: 200px;
  text-align: center;
  margin: 150px 0px 40px 425px;
  transition: width 4s,  height 4s; }

#header:hover {
  margin-left: 225px;
  width: 900px;
  height: 100px;
  border-radius: 25%;
  background-color: tan;
  text-align: center;
  font-size: 56pt;
  color: brown;
  transition: width 4s,  height 4s; }

.box {
  width: 20%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  padding: 35px;
  border: 2px dotted #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center; }

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid brown;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out; }

.button:hover {
  background: brown; }

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0; }

.overlay:target {
  visibility: visible;
  opacity: 1; }

div.popup {
  margin: 100px auto;
  padding: 20px;
  background: tan;
  color: antiquewhite;
  border-radius: 5px;
  width: 20%;
  position: relative;
  animation-name: slider;
  animation-duration: 10s;
  -webkit-transition: width 2s, height 4s;
  /* For Safari 3.1 to 6.0 */
  transition: width 2s, height 4s;
  animation-delay: 10s; }

@keyframes slider {
  0% {
    left: 0px;
    top: -400px;
    background: tan; }
  25% {
    left: 0px;
    top: 200px;
    background: brown; }
  50% {
    left: 0px;
    top: 200px;
    background: grey; }
  75% {
    left: 0px;
    top: 200px;
    background: grey; }
  100% {
    left: -1000px;
    top: 200px;
    background: white; } }
div.popup:hover {
  height: 15%;
  width: 30%;
  font-size: 14pt;
  font-weight: bold;
  text-align: center; }

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif; }

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333; }

.popup .close:hover {
  color: brown; }

.popup .content {
  max-height: 30%;
  overflow: auto; }

/*# sourceMappingURL=popups.css.map */
