body {
  background: #ffffff;
  color: rgba(0, 0, 0, 0.87);
  font-family: Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  max-width: 800px; /* Could be more or less, depending on screen size */
  border-radius: 12px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

.roundedButton {
  border-radius: 12px;
  background-color: white;
  color: crimson;
  border: crimson solid 2px;
  padding: 8px 16px;
  cursor: pointer;
}

.roundedButtonCTA {
  border-radius: 12px;
  background-color: crimson;
  color: white;
  border: crimson solid 2px;
  padding: 8px 16px;
  cursor: pointer;
}

.roundedButtonCTA:hover {
  background-color: lightcoral;
  color: white;
}

.roundedButton:hover {
  background-color: #ff8f00;
  color: white;
}

footer {
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  padding-left: 8px;
  padding-right: 8px;
  background-color: white;
  align-items: center;
  border-bottom: #aaa solid 1px;
}

.callToAction {
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
  text-align: center;
}

.salesLetter {
  font-size: 20px;
  max-width: 800px;
  margin: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.salesLetter h1 {
  text-align: center;
}

.salesLetter li {
  margin-bottom: 16px;
}