
.details h2{
 text-align: left;
 margin-left: 30px;
 font-size: 30pt;
 color: #800208;
 font-style: italic;
}

.details p{
    margin-left: 30pt;
    font-size: 18pt;
}

* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
  }
  
  /* Float four columns side by side */
  .column {
    float: left;
    width: 48%;
    padding: 0 10px;
    margin-left: 10px;
  }
  
  /* Remove extra left and right margins, due to padding in columns */
  .row {margin: 0 -5px;}
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Style the counter cards */
  .card {
    padding: 16px;
    text-align: left;
    background-color: #f1f1f1;
  }
  
  /* Responsive columns - one column layout (vertical) on small screens */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }

    .card{
      width: 100%;
      margin-bottom: 10px;

    }
    img{
        max-width: 330px;
        height: auto;
    }
     h1{
      font-size: 30pt;
      text-align: left;
    }
    #head{
      text-align: left;
      font-size: 40pt;
      margin-left: 20pt;
    }

    s
  }


  /* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 21px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .collapsible:hover {
    background-color: #800208;
    color: white;
    padding: 12px;
    width: 70%;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
  }

