/* base styles */

html {
  background-color: black;
}

html, body {
  overflow-x: hidden;
}

body {
  background-image: url('images/space.gif');
  background-repeat: repeat;
  background-size: 10%;
  color: white;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* layout */

.content {
  max-width: 400px;
  margin: auto;
  padding: 25px;
}

header {
  margin: auto;
  text-align: center;
}

section {
  margin-bottom: 50px;
}

footer {
  text-align: center;
}

/* typography & links */

li {
  font-size: 20px;
}

a:link {
  color: #2020f7;
}

/* images */

img {
  max-width: 100%;
  height: auto;
}

.post-content img {
  display: block;
  margin: auto;
}

/* form inputs */

.smallboy {
  height: 25px;
  padding: 12px;
  margin: 10px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: white;
  resize: none;
}

.bigboy {
  height: 50px;
  padding: 12px;
  margin: 10px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: white;
  resize: none;
}

/* utility classes */

.words {
  margin: 10px;
}

.post-meta {
  padding: 15px 0;
}

/* animations */

/* pulsing */
.pulse {
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0;
  }
}

/* moving */
.move {
  -moz-animation: img 5s linear infinite alternate;
  -webkit-animation: img 5s linear infinite alternate;
  animation: img 5s linear infinite alternate;
}

@-moz-keyframes img {
  0% {
    -moz-transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(0%);
  }
}

@-webkit-keyframes img {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes img {
  0% {
    -moz-transform: translateX(70%);
    -webkit-transform: translateX(70%);
    transform: translateX(70%);
  }
  100% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

/* other */

#honor {
  text-align: center;
}

#honor h3 {
  text-align: left;
}

#honor img {
  max-width: 190px;
  width: 45%;
}

/*#direct a {*/
/*  display: block;*/
/*}*/

/*#direct a:first-of-type {*/
/*  float: left;*/
/*}*/

/*#phorewurd {*/
/*  float: right;*/
/*}*/