.ex-tile{
    background-color: tan;
    border: 4px solid sienna;
    border-radius: 25px;
    padding: 10px;
    box-sizing: border-box;
    margin: 0.5rem 0 0.5rem 0;
    color: black;
}
.ex-tile.ex-tile-glow{
    border: 4px solid #dfbc00;
    -webkit-box-shadow: 0px 0px 15px 7px #dfbc00;
    -moz-box-shadow: 0px 0px 15px 7px #dfbc00;
    box-shadow: 0px 0px 15px 7px #dfbc00;
}
.ex-title{
    display: block;
    line-height: 32px;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 400;
}

.ex-tile a {
    color: #3c9e8d;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    text-transform: uppercase;
    font-weight: bold;
}
.ex-tile a:hover {
    color: #307f71;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    text-transform: uppercase;
}

/* Skill list */

/* * {
    box-sizing: border-box;
  } */
  /* body {
    background-color: #f5f5f5;
    margin: 0 auto; 
    max-width: 60em;
    line-height: 1.3;
  } */
  ul.skill-list, li.skill-list-item {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .skill-list-content h2 {
    margin-top: 0;
    margin-bottom: 0.4em;
  }
  
  /*Flex items*/
  .skill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .skill-list-item {
    display: flex; 
    padding: 0.5em;
    width: 49%;
  }
  .skill-list-content {
    display: flex;
    flex-direction: column;
    /* padding: 1em; */
    width: 100%;
  }
  .skill-list-content p {
    flex: 1 0 auto;
  }