@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Marck+Script&family=Roboto:wght@300&display=swap");
body {
  font-family: "Roboto", sans-serif;
  color: #30303a;
  background-color: #f9f9f9; }

header {
  text-align: center; }

#controller {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: stretch;
  flex-basis: fill;
  padding: 0;
  font-family: sans-serif; }
  #controller div {
    flex-grow: 1;
    background-color: #ff0101;
    border: solid 7px #30303a; }
  #controller input {
    font-size: 1.5rem;
    padding: 20px 10px;
    flex-grow: 3;
    text-align: center;
    background-color: #fff001;
    border: solid 3px #30303a;
    font-family: "Marck Script", cursive; }
    #controller input::placeholder {
      color: #ff0101;
      font-family: "Marck Script", cursive; }
  #controller button {
    flex-grow: 1;
    font-size: 1.3rem;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 900;
    color: #f9f9f9;
    background-color: #0101fd;
    border: solid 3px #30303a; }

h1 {
  font-family: "Abril Fatface", cursive;
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 3em; }
  h1 span {
    font-size: 0.5em;
    color: #ff0101;
    font-family: "Marck Script", cursive;
    letter-spacing: normal; }

.card {
  padding: 20px;
  background-color: #fff;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-top: 3px solid #30303a;
  border-bottom: 3px solid #30303a;
  word-wrap: normal; }

.container {
  display: flex;
  flex-direction: row; }
  .container .col {
    border: solid 5px #30303a;
    min-width: 300px;
    min-height: 500px;
    flex-grow: 1;
    background-color: #e9e9e9;
    text-align: center; }
    .container .col h3 {
      font-size: 1.6rem;
      border-bottom: 6px solid #242323;
      padding: 10px;
      padding-top: 0;
      font-family: "Abril Fatface", cursive; }
  .container #todo > .card {
    background-color: lightgoldenrodyellow; }
  .container #doing > .card {
    background-color: lightgreen; }
  .container #done > .card {
    background-color: lightblue; }
