
h1, h2, h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600; /* Uses the bold style you included in the link */
}


body {
    font-family: 'Quicksand', sans-serif;
    font-size: larger;
    font-weight: 500; /* Regular weight for body text */
    width: 100%; /* Allows the div to take full available width up to max-width */
    max-width: 1200px; /* Sets the maximum width the div can reach */
    box-sizing: border-box; /* Include padding in the element's total width */
}



.float-right {
  float: right;
  margin: 20px 10% 20px 10px; /* Adds margin to the left and bottom */
  width: 45%; /* It's important to set a width less than 100% */
}

.text-left {
  text-align: left;
  margin-left: 5%;
  margin-right: auto;
  margin-top: 20px; /* Example: Adds 20px of margin to the top */
}

.text-left-box {
  text-align: left;
  margin-left: 5%;
  margin-right: auto;
  margin-top: 20px; /* Example: Adds 20px of margin to the top */
  margin-bottom: 20px; /* Example: Adds 20px of margin to the bottom */
  width: 45%; /* It's important to set a width less than 100% */
}