.tagline {
 text-transform: uppercase;
 font-size: .8em;
}
.tagline a {
    color: #000 !important;
    text-decoration: none !important;
}
.tagline a:hover {
    text-decoration: none !important;
}
.outlined {
    color: white; /* Sets the text fill color */
  text-shadow:
    -1px -1px 0 #fff, /* Top-left shadow */
    1px -1px 0 #fff, /* Top-right shadow */
    -1px 1px 0 #fff, /* Bottom-left shadow */
    1px 1px 0 #fff; /* Bottom-right shadow */
}
.img-padr-1 {
    padding-right: 1em;
}
.ctapix img {
    width: 150px;
    border-radius: 5px;
}
.ctapix a, .ctapix {
    color: #fff !important;
}
.ctaforms h2 {
    color: #fff;
}
.peekaboo {
    display: none;
}
.btn-ctabox {
    background: rgb(250, 190, 190);
}
.tar {
    text-align: right;
}
.tac {
    text-align: center;
}
.fwb {
    font-weight: bold;
}
.fsi {
    font-style: italic;
}
h3 {
    font-size: 1.6em;
    text-transform: none;
}
.mr-1 {
    margin-right: 1em;
}
.breadcrumb {
    font-size: .8em;
}
#header .header-body {
    border-bottom: solid #8e1212;
}
.center-content {
    margin-left: auto;
    margin-right: auto;
}
.adminbar {
    position:  absolute;
    top:  10px;
    right: 10px;
    font-size: .8em;
    z-index: 9999;
}
.equipadminbar ul, .adminbar ul {
    display: inline;
}
.equipadminbar li, .adminbar li {
    list-style: none;
    margin-right: 1em;
    display: inline;
}
.normalcheckbox {
    margin-right: 1em;
}
.grayed-out {
    opacity: 0.5;
}
.ltgreen {
    color: rgb(10, 224, 10);
}
/* files listings */


    HTML CSS 

    Result
    Skip Results Iframe

EDIT ON

.file-flex-container {
  /* We first create a flex layout context */
  display: flex;
  
  /* Then we define the flow direction 
     and if we allow the items to wrap 
   * Remember this is the same as:
   * flex-direction: row;
   * flex-wrap: wrap;
   */
  flex-flow: row wrap;
  
  /* Then we define how is distributed the remaining space */
  justify-content: space-around;
  
  padding: 0;
  margin: 0;
  list-style: none;
}

.file-flex-item {
  padding: 5px;
  width: 200px;
  height: auto;
  margin-top: 10px;
  color: white;
  font-weight: bold;
  font-size: .8em;
  text-align: center;
  border: solid thin rgb(53, 50, 50);
  border-radius: 20px;
}
.colorlabel {
    
    background: #fff;
    width: 25%;
    text-align:center;
    font-size: .8em;
    float:left;
}

/* nice list for checkbox lists */
.nicelist ul, .nicelist50, .nicelist33, .nicelist100 {
    display: flex;
    flex-wrap: wrap;
}
.nicelist li {
    width: 25%;
    list-style: none;
}
.nicelist50 li {
    width: 50%;
    list-style: none;
}
.nicelist100 li {
    width: 30%;
    list-style: none;
    margin-right: 1.2em;
}
.nicelist33 li {
    width: 50%;
    list-style: none;
}
.moresizes {
    background: #f1e3e3;
}

/* basic grid */

.projectcontainer {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
}
.projectcontainer div {
  border: 1px solid rgb(192, 187, 187);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.image-tile {
    width: 200px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    border: 0px !important;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.customer-stuff {
    padding: 1em;
    background: #d2dcf7;
    border-radius: 10px;
}
.li_heading {
    outline: solid thin;
    background: #fff3f3;
    font-weight:bold;
}
.threadgrid {
    outline: solid-thin rgb(241, 236, 236) !important;
}
  