/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
  margin: auto;
  max-width: 640px;
  border: 3px solid green;
  padding: 10px;
}


.firstline{
  margin: 10px;       /* Space outside the element */
  font-family: Luminari, fantasy;
}
.maintext {
   margin: 10px;       /* Space outside the element */
   font-size:18px;
}
img{
  width:100%;
  border-radius: 12px;
}

.maintext .directive{
  font-family: Luminari, fantasy;
  font-weight:bold;
  text-align:center;
  font-size:2em;
}
.container {
  display: flex;
  justify-content: space-between; /* Distributes items with space between */
  align-items: center;            /* Vertically centers items */
}
.container a{
  text-decoration: none;
}
.container .choices {
  background-color:yellow;
  color:red;
  font-family: Luminari, fantasy;
  font-size: 1em;
  padding: 10px;      /* Space inside the element */
  margin: 5px;       /* Space outside the element */
  border: 2px solid #000; /* Solid black border */
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.container .choices:hover {
  background-color:white;
  color:black;
}
