body {
    background-color: black;
}

* {
    color: white !important;
    font-family: Inconsolata;
    line-height: 1.2;
}

.profile-picture {
    height: 110px;
    width: 110px;
    position: relative;
    margin: 2rem 0rem 0rem 1rem !important;
    float: right;
    border-radius: 50%;
}

.emph {
    font-weight: bold;
}

.container2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: auto;
    align-content: start
  }

  .item {
    flex: 0 0 auto;
    margin: 10px;
    padding: 10px;
    width: 17%;
    text-align: center;
    cursor: pointer;
  }

  .item.whole-row {
    width: 100% !important;
    text-align: left;
  }

  .item:nth-child(odd),
  .item:nth-child(odd) span {
    background: #e8e8e8;
    color: black !important;
  }

  .item:nth-child(even),
  .item:nth-child(even) span {
    background: #3d3d3d;
    color: white;
  }

  .item-social {
    flex: 0 0 auto;
    margin: 10px;
    padding: 10px;
    width: 30%;
    text-align: center;
    cursor: pointer;
  }

  @media only screen and (max-width: 600px) {
    .item {
        width: 29%;
        margin: 5px;
        padding: 5px 1px 5px 1px;
        font-size: 0.9em;
      }

      .item-social {
        width: 25%;
      }
  }

