:root {
    --modal-duration: 1s;
    --modal-color: #428bca;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    font-size: 17px;
    line-height: 1.6;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }
  
  .button {
    background: #428bca;
    padding: 1em 2em;
    color: #fff;
    border: 0;
    cursor: pointer;
  }

  h3{
    text-transform: uppercase;
    }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    border-radius: 12px;
    margin: 20vh auto;
    width: 880px;
    max-width: 80vw;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    animation-duration: var(--modal-duration);
    background: #fff;
    text-align: left;
  }
  
  #modal-vid {
    border-radius: 12px;
    background: #fff;
    height: 500px;
  }
  
  #modal-body {
    border-radius: 12px;
    background: #fff;
    padding: 5% 10%;
    max-height: 500px;
    overflow-y: scroll;
  }
  
  .close {
    position: fixed;
    color: #fff;
    float: right;
    font-size: 80px;
    left: 30px;
    top: 0px;
    z-index: 10;
    transition: ease-out .5s;
    }
  
  @keyframes close{
    from{transform: scale(1);}
    to{transform: scale(1.1);}
  }

  .close:hover,
  .close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    animation: close .5s forwards ease-out;
    transition: ease-out .5s;
  }
  
  @keyframes modalopen {
    from {
      opacity: 0;
      margin-top: 25vh;
    }
    to {
      opacity: 1;
      margin-top: 20vh;
    }
  } 

.hide{
  display: none;
}
.left{
  display: inline-block;
  width: 60%;
  margin-top: 0;
}
.right{
  display: inline-block;
  width: 34%;
  margin-left: 5%;
  vertical-align: top;
}