/* Page Setup */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
    
  }
  
  .container{
    padding: 40px 5%;
    background-color: pink;
  }
  
  .footer{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    margin: 10px;
  }
  
  .footer a{
    padding: 5px;
    border: 2.5px;
    border-style: solid;
    color: palevioletred;
    text-decoration: none;
  }
   
  /* Text Stuff */
  
  .heading-text {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 10;
    text-align: center;
    color:palevioletred;
  }
  
  .body-text {
    color:#803945;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  a:hover{
    text-decoration: underline;
  }
  
  .italics{
    font-style: italic;
  }
  
  /* Image Stuff */
  
  .row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  .column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }

  .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-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 {
      flex: 100%;
      max-width: 100%;
    }
  }