/* styles */
/* called by your view template */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700|Permanent+Marker&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 2em;
  background-color: #000;
  text-align: center;
}

h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: 3em;
  color: #FFF;
}

p {
  max-width: 600px;
  text-align: left;
}

main {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  color: black;
  padding: 20px;
}

form {
  padding: 15px;
  width: 100%;
  text-align: left;
}

.form-row {
  display: block;
  margin: 1em 0;
}

form label {
  display: block;
}

label input[type="checkbox"] {
  display: inline-block;
  margin-right: 5px;
  width: auto;
}

input {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 3px;
  font-size: 16px;
}

button {
  font-size: 16px;
  border-radius: 3px;
  background-color: yellow;
  color: black;
  border: 1px solid grey;
  box-shadow: 0px 0px teal;
  padding: 5px 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  box-shadow: 2px 2px teal;
}

button:active {
  box-shadow: none;
}

li {
  margin-bottom: 5px;
}

#dreams {
  text-align: left;
}

footer {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid lightgrey;
}
