/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .flex {
   display: flex;
 }

 .flex-col {
   display: flex;
   flex-direction: column;
 }

 .grid-files {
  display: grid;
  align-items: center;
  grid-template-columns: 5% auto;
 }