@import url(https://fonts.googleapis.com/css?family=Share+Tech+Mono);
body {
  background: #088;
}

header h1 {
  color: white;
  text-align: center;
  text-shadow: 1px 1px black;
}

.window {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 17em;
  width: 30em;
  padding: 2px;
  background: #c0c0c0;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  font-family: monospace, arial, sans-serif;
  font-size: 12px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.window .header {
  position: relative;
  background: #008;
  background-image: -webkit-linear-gradient(left, #00007b, #1980cb);
  background-image: linear-gradient(to right, #00007b, #1980cb);
  color: #fff;
}
.window .header .title {
  display: inline-block;
  padding: 0.25em;
  font-weight: bold;
}
.window .header .btn-info,
.window .header .btn-close {
  position: absolute;
  top: 3px;
  right: 24px;
  display: block;
  height: 12px;
  padding: 0 4px;
  background: #c0c0c0;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  box-shadow: 1px 1px 0 #111;
  color: black;
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
  cursor: default;
}
.window .header .btn-info:active,
.window .header .btn-close:active {
  background: #b0b0b0;
  border-top-color: #333;
  border-left-color: #333;
  border-right-color: white;
  border-bottom-color: white;
  box-shadow: -1px -1px 0 #666;
}
.window .header .btn-info:active span,
.window .header .btn-close:active span {
  position: relative;
  top: 1px;
  left: 1px;
}
.window .header .btn-close {
  top: 3px;
  right: 3px;
}
.window .main {
  font-family: monospace, arial, sans-serif;
  letter-spacing: -1px;
}
.window .main .image {
  position: absolute;
  height: 40px;
  width: 40px;
  top: 40px;
  left: 20px;
  border-radius: 5px;
  background-size: cover;
}
.window .main img {
  position: absolute;
  top: 40px;
  left: 20px;
  border-radius: 5px;
}
.window .main p {
  position: absolute;
  top: 30px;
  left: 80px;
}
.window .main .select {
  position: absolute;
  bottom: 60px;
  right: 15px;
}
.window .main .select select {
  padding: 3px;
  width: 270px;
  background: #00007b;
  color: white;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  box-shadow: -1px -1px 0 #111;
}
.window .main button {
  padding: 5px;
  width: 90px;
  background: #c0c0c0;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  box-shadow: 1px 1px 0 #111;
  outline: 0;
}
.window .main button:active {
  background: #b0b0b0;
  border-top-color: #333;
  border-left-color: #333;
  border-right-color: white;
  border-bottom-color: white;
  box-shadow: -1px -1px 0 #666;
}
.window .main button:active span {
  position: relative;
  top: 1px;
  left: 1px;
}
.window .main button[type="ok"] {
  position: absolute;
  bottom: 15px;
  right: 120px;
}
.window .main button[type="cancel"] {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.bsod {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0000a8;
  color: #f9f9fb;
}
.bsod .bsod-center {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 35em;
  font-family: "Share Tech Mono", monospace;
  font-size: 16px;
  font-weight: 500;
  -webkit-transform: translate(-50%, -25%);
          transform: translate(-50%, -25%);
}
.bsod .bsod-center .title {
  text-align: center;
}
.bsod .bsod-center .title span {
  display: inline-block;
  padding: 0.125em 0.5em;
  background: silver;
  color: #0000a8;
}
.bsod .bsod-center p span {
  margin-left: 16px;
}
.bsod .bsod-center .action {
  text-align: center;
}
.bsod .bsod-center .action span {
  font-size: 1.25em;
}
.bsod .bsod-center .action span u {
  -webkit-animation: blink 1s linear infinite;
          animation: blink 1s linear infinite;
}

@-webkit-keyframes blink {
  0% {
    color: #f9f9fb;
  }
  49% {
    color: #f9f9fb;
  }
  50% {
    color: transparent;
  }
  99% {
    color: transparent;
  }
}

@keyframes blink {
  0% {
    color: #f9f9fb;
  }
  49% {
    color: #f9f9fb;
  }
  50% {
    color: transparent;
  }
  99% {
    color: transparent;
  }
}
.image {
  background-image: url("download.png");
}

@import url(http://fonts.googleapis.com/css?family=Raleway);
/* Colors */
* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

footer {
  font-family: Raleway, sans-serif;
  width: 100%;
  display: inline-block;
  position: fixed;
  bottom: 0px;
  height: 70px;

}
footer .copyright {
  width: 50%;
  float: left;
}
@media (max-width: 600px) {
  footer .copyright {
    width: 100%;
  }
}
footer .copyright p {
  padding-left: 10%;
  color: white;
  font-size: 0.7em;
  line-height: 70px;
  text-transform: capitalize;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  footer .copyright p {
    text-align: center;
    padding: 0;
  }
}
footer .social {
  width: 50%;
  float: right;
}
@media (max-width: 600px) {
  footer .social {
    width: 100%;
  }
}
footer .social a {
  float: right;
  line-height: 70px;
  text-decoration: none;
  color: white;
  text-align: center;
  font-weight: bold;
  -moz-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
footer .social a:hover {
  background-color: #222;
  -moz-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}

.linked {
  background-color: #1E83AE;
  font-size: 1.2em;
  width: 20%;
}

.face {
  background-color: #3D5B94;
  font-size: 1.2em;
  width: 20%;
}

.tweet {
  font-size: 1.2em;
  width: 20%;
}

.support {
  background-color: #6dcd9a;
  font-size: 0.8em;
  width: 40%;
}
