  .container {
    display: flex;
    flex: 1;
    flex-direction: column;
    background: #f9f9f9;
  }

  .header {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      box-shadow: 0 10px 6px -6px #cacbcc;
      padding: 35px 0px 0px;
      padding-left: 120px;
  }

  .contentColumnEmpty {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.contentColumn {
    display: flex;
    flex: 5;
    flex-direction: column;
}

.newcard:hover,
.newcard {
    background: linear-gradient(90deg, rgb(114, 10, 109), rgb(78, 4, 41));
    color: white;
    transition:all .5s ease-in-out;
}