.album {
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,1);
  cursor: pointer;
  height: 310px;
  width: 250px;
  position: relative;
  margin: 1.5rem;
}

.album__name {
  background: transparent;
  position: absolute;
  top: 5px;
  font-size: 1.7rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 0px #666;
  text-decoration: underline;
}

.album__photos {
  background-color: #555;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1rem;
  width: 100%;
  position: relative;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
}

.album__photos::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #555;
  position: absolute;
  top: -20px;
  left: calc(50% - 20px);
}

.album__firstImage {
  height: 250px;
  vertical-align: top;
  width: 100%;
}

.album__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  background-color: #444;
}

.album__action {
  color: white;
  cursor: pointer;
  font-size: 1.8rem;
  border-radius: 50%;
  padding: 0.8rem;
}

.album__delete {
  cursor: pointer;
  background-color: red;
  border-radius: 50%;
  top: -14px;
  right: -14px;
  color: white;
  position: absolute;
  font-size: 2rem;
  padding: 0.5rem 0.6rem;
}

@media screen and (max-width: 991px) {
  .album__action {
    font-size: 2.5rem;
    padding: 1.2rem;
  }
}
