
:root {
    font-size: 10px;
  }
  
  body {
    max-width: 100vw;
    padding: 1em;
    background-color: #3e4444;
    color: white;
  }
  
  h1,
  h3 {
    color: #82b74b;
  }
  
  h1 {
    font-size: 3em;
    text-align: center;
  }
  
  h3 {
    font-size: 2em;
  }
  
  section {
    width: 100%;
    min-height: 60vh;
    margin: 10vh 0;
  }
  /* functional naming class*/
  
  .float-right {
    float: right;
    margin-left: 1em;
  }
  /* functional naming class*/
  
  .float-left {
    float: left;
    margin-right: 1em;
  }
  
  /* Improve image quality while maintaining the original aspect ratio */
  
  /* img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border: 2px solid #405d27;
   
  } */
  
  /* Maintain uniformly sized images at the expense of slightly lower quality: */
  
  img {
    width: 50vw;
    height: 50vh;
    object-fit: cover;
    border: 2px solid #405d27;
  }
  
  p {
    font-size: 1.8em;
    line-height: 1.5em;
  }
  