html, body {
  margin: 0;
}

body {
  background: #222;
  color: #ccc;
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: "Asap Condensed";
  font-size: 1.2rem;
  line-height: 1.5;
}

a, a:visited, a:hover, a:active {
  color: #f80;
  text-decoration: none;
}

header {
  background: #111;
  text-align: center;
}

main {
  display: flex;
  flex-grow: 1;
  padding: 20px;
  flex-direction: column;
  align-items: center;
}

footer {
  display: flex;
  background: #111;
  color: #888;
  min-height: 50px;
  align-items: center;
  justify-content: center;
}

.nav {
  display: inline-block;
  margin: 10px;
  cursor: pointer;
}

input, textarea, button {
  background: #111;
  color: #ccc;
  padding: 10px;
  border: 1px solid #333;
  font-size: 1.1rem;
  display: block;
  margin: 10px;
  border-radius: 5px;
  outline: none;
}

textarea {
  min-width: 400px;
  min-height: 200px;
}

button {
  background: #f80;
  color: #000;
  border-radius: 5px;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  margin: 10px;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  border: 1px solid #555;
  min-width: 400px;

  span {
    display: block;
  }
}
