@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400);
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font: 1.15em "Source Sans Pro", sans-serif;
  letter-spacing: 0.5px;
  background: #EEEEEE;
  color: black;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 0;
}

h2 {
  font-size: 2em;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  font-size: 10px;
  text-wrap: wrap;
  
}

input {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0.5em auto;
  margin-bottom: -25px;
  padding: 0.5em;
  padding-left: 0.1em;
  vertical-align: middle;
  border: 1px solid transparent;
  border-bottom: 1px solid black;
  border-radius: 2px;
  color: black;
  background: transparent;
  font-size: 1em;
  width: 100%;
  width: calc(100% - 1em);
  max-width: 29.25em;
  outline: 0;
}

.openUp-enter-active, .openUp-leave-active {
  transition: all 0.5s;
}

.openUp-enter, .openUp-leave-active {
  opacity: 0;
  transform: translateY(25%);
}

.vue {
  text-align: center;
  padding: 0 0.5em;
}
.vue .stats {
  position: fixed;
  top: 0.5em;
  right: 0.5em;
  font-size: 0.75em;
  text-align: right;
}
.vue .stats > * {
  margin: 0;
  padding: 0;
}
.vue .newMessage {
  position: fixed;
  top: 0.5em;
  left: 0.5em;
  font-size: 0.75em;
  text-align: left;
}
.vue .newMessage > * {
  margin: 0;
  padding: 0;
}
.vue .messages {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  padding-top: 2em;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.vue .messages .message {
  position: relative;
  background: #a9011756;
  margin: 0.1em;
  padding: 1em;
  flex-grow: 1;
  border-radius: 5px;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  transition: all 0.2s;
  cursor: pointer;
}
.vue .messages .message.active {
  background: #88b14b;
}
.vue .messages .message:hover {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.vue .messages .message .close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}
.vue .messages .message .close:hover {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.75);
  transition: all 0.2s;
}