.creaters-card-container {
  width: 25%;
  padding: 0.75em;
}

.creaters-card {
  background-color: white;
  border: 1px solid lightgray;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
}

.creaters-card:hover {
  box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.05);
  opacity: 0.97;
}

.creaters-cover-photo-container {
  border-radius: 10px;
}

.creaters-cover-photo-container img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.creaters-photo-container {
  margin-top: -50px;
  background-color: white;
  padding: 3px;
  border-radius: 45px;
}

.creaters-photo-container img {
  height: 85px;
  width: 85px;
  border-radius: 43px;
}

.photo-spacer {
  background-color: white;
  height: 85px;
  width: 85px;
  position: absolute;
}

.creaters-card .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
}

.creaters-card .username {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/************** Responsive design *********************/

/*** Tablets and wide screens **/
@media (max-width: 992px) {
  .creaters-card-container {
    width: 50% !important;
  }
}

/*** For phones and small devices **/
@media (max-width: 576px) {
  .creaters-card-container {
    width: 100% !important;
  }
}
