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

* {
  box-sizing: border-box;
}
body {
  font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
  max-width: 1024px;
  margin: auto;
}
.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 15px;
  max-width: 700px;  
}
.notes {
  margin: 0px 15px;
}
.random {
  padding: 15px 30px;
  margin: 15px 15px 20px 0px;
  background: rgb(240, 240, 255);
  border-radius: 30px;
  box-shadow: 10px 10px 5px lightgrey;
}
p.subtitle {
  margin: 0px 30px;
  font-style: italic;
  color: darkgrey;
}
h1 {
  font-style: italic;
  color: #373fff;
  margin: 15px;
}
.bold {
  font-weight: bold;
}
p {
  margin: 10px 0px;
}
li {
  margin-bottom: 5px;
}
ul {
  margin-top: 5px;
  margin-bottom: 5px;
}
footer {
  margin: 50px 15px;
  padding-top: 25px;
  border-top: 1px solid lightgrey;
}
canvas {
  height: 400px;
  width: 300px;
}
select.limerick {
  font-size: large;
}
select, input {
  font-size: medium;
}