/* From https://www.swyx.io/css-100-bytes/, with a few tweaks */ 

html { 
  max-width: 70ch; 
  padding: 3em 1em; 
  margin: auto; 
  line-height: 1.5; 
  font-size: 1.25rem; 
}

body {
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 { 
 /* margin-bottom: 1em; */
  /* margin-top: 3em;*/
  font-family: -apple-system, Ubuntu, Overpass, sans-serif;
} 

h1 {
   text-align: center;
   font-size: 210%;
}

p,ul,ol { 
  margin-bottom: 2em; 
  color: #1d1d1d; 
  font-family: -apple-system, Ubuntu, Overpass, sans-serif;
}

small {
   font-size: 8px;
   font-family: -apple-system, Ubuntu, Overpass, sans-serif;
}

/* Styling for notes */

.note {
  background-color: rgba(0, 133, 242, .1);
  border-left: 4px solid blue;
  padding-left: 6px;
}

.note::before {
  content: "Note: ";
  font-weight: bold;
}

/* Styling for the subscription box */

.embeddable-buttondown-form {
  font-family: -apple-system, Ubuntu, Overpass, sans-serif;
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: left;
  align: center;
}

.embeddable-buttondown-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
}

.embeddable-buttondown-form input[type=email] {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
}

.embeddable-buttondown-form input[type=submit] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.embeddable-buttondown-form input[type=submit]:hover {
  background-color: #0056b3;
}

.embeddable-buttondown-form p {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
}

.embeddable-buttondown-form a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.embeddable-buttondown-form a:hover {
  color: #0056b3;
}

/* Styling for two columns below the subscription box */

.row {
    display: flex;
    max-width: 650px;
}

.column {
    flex: 1;
    padding: 7px 3px;
}

