@charset "utf-8";
/* CSS Document */



    /* Headings */
   .content h1, h2, h3, h4, h5, h6 {
      margin: 10px 0;
    }

    /* Links */
      .content a {
      color: green;
      text-decoration: none;
    }
      .content a:hover {
      text-decoration: underline;
    }

    /* Images */
       .image-right {
      width: 30%;
      display: block;
      margin: 20px auto;
    }

    /* Paragraph text wrapping images on desktop */
       .text-block img {
      margin: 10px;
    }

    /* Mobile-first: images centered, text above and below */
      .text-block img {
      display: block;
      margin: 20px auto;
      float: none;
    }

    /* Container for page content */
    .content {
      max-width: 1200px;
      margin: 0 auto;
		
	font-family: Arial, sans-serif;
      line-height: 1.6;
      padding: 20px;
      color: #333;	
    }

    /* Desktop layout */
    @media (min-width: 768px) {
      .text-block img {
        float: right;
        margin: 0 0 10px 20px;
        width: 30%;
      }
    }