body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: aliceblue;
}
h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.section-container {
    background-color: #dbdbff; /* light neutral for contrast */
    padding: 1.5rem;
    border-radius: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.section-container h2 {
    font-size: 1.50rem;
    margin-top: 0rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.section-container p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.section-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1rem auto 2rem auto;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/*Web Desktop*/
@media (min-width: 768px) { 
  h1 { 
    font-size: 3.5rem; 
  }
  p  { 
    font-size: 1.2rem; 
  }

  .section-container {
      padding: 1rem;
      border-radius: 0.75rem;
  }

  .section-container h2 {
      font-size: 1.9rem;
  }

  .section-container p {
      font-size: 1.4rem;
  }
}