.wrapper {
    display: flex;
    margin: 0px auto;
    width: 800px;
    justify-content: center;
    align-items: center;
}

.content {
    margin: 0px 5px;
}

body {
    font: 0.85rem sans-serif;
}
.title {
    font-size: 5rem;
    font-weight: bold;
    margin: 20px auto;
    text-align: center;
}
.container,
.container .footer {
    border: 3px solid #000;
    width: 450px;
    height: 800px;
    border-radius: 10px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}
.container .icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 5px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    
}
.container .icon-wrapper-large {
    width: calc(100% / 2 - 20px);
    height: 150px;
    margin: 5px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #ccc;
    color: #000;
    
}
.container .icon-wrapper img {
    width: 90px;
}
.container .footer {
    background: #cedeed;
    padding: 3px;
    height: auto;
    border: none;
}

.container .footer .icon-wrapper img {
    width: 85px;
}

.container .icon-wrapper img.folder {
    cursor: pointer;
}
.hide {
    display: none;
}

.show {
    display: flex;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 500px;
  height: 400px;
  position: relative;
    margin: 0 auto;
    top: 25%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#modal-text {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.25rem;
    border-bottom: 1px solid #000;
}

.modal-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.modal-list-item {
    flex: 1 0 33%;
    height: 3rem;
}