
h1 {
  font-size: 50px;
  word-break: break-all;
}


/* =========================
   Layout & Box Model
   ========================= */
* {
  box-sizing: border-box;
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

.row {
  margin: 8px -16px;
}

/* =========================
   Content Card Styles
   ========================= */
.content {
  background-color: #fff;
  color: #222;
  padding: 16px 12px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}

.content:focus-within {
  box-shadow: 0 0 0 3px #9C22A5, 0 2px 8px rgba(0,0,0,0.12);
}

/* Ensure images are responsive and have rounded corners */
.content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Focus style for links inside content */
.content a:focus {
  outline: 2px solid #2BA522;
  outline-offset: 2px;
  border-radius: 2px;
}

/* =========================
  Responsive Design
  ========================= */
@media screen and (max-width: 900px) {
  .row {
    margin: 4px -8px;
  }
  .content {
    padding: 12px 6px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .row {
    margin: 2px -4px;
  }
  .content {
    padding: 8px 2px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 900px) {
  .column {
    width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}
