* {
    box-sizing: border-box;
  }
  
  .image {
      max-width: 250px;
      max-height: 250px;
      
  }

  body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90%;
  }
  
  /* Float four columns side by side */
  .column {
    float: left;
    width: 20%;
    padding:10px;
  }
  
  /* Remove extra left and right margins, due to padding in columns */
  .row {margin: 50px; width: 70%;}
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Style the counter cards */
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    padding: 16px;
    text-align: center;
    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;
    }
  }

  .modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modalContent {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
  }

  .modalTitle{
    margin:50px 50px 30px 30px;
    font-size:24px
  }

  .modalDescription{
    margin:30px;
    font-size:18px;
    text-align: justify;
  }
  .modalButtons{
      display: flex;
      justify-content: right;
      align-items: flex-end;
  }
  .btn{
      margin:5px;
      background-color: #4CAF50;
      border: none;
      color: white;
      padding: 12px 26px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      border-radius: 5px;
  }
  .btnText{
    margin-bottom: 18px;
    margin-right:25px
  }
  .card a{
    text-decoration: none;
    color: black;
  }
.btnYes {background-color: #004a90;} /* Blue */
.btnNo {background-color: #cc061b; margin-right: 30px;} /* Red */