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

.photo__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;
}

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

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

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

.large-photo-container {
  width: 100%;
}

.large-photo-container img {
  width: 100%;
}

.photo__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) {
  .photo__action {
    font-size: 2.5rem;
    padding: 1.2rem;
}
}
