*,
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: white;
}
.content-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.image-container,
.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.image-container {
    z-index: 1;
}
.image-container img {
    opacity: 1;
    display: block;
    object-fit: cover;
    transition: all 0.2s;
}
.actions-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.actions-container button {
    outline: none;
    border: none;
    background-color: white;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 25px;
    margin: 5px;
    cursor: pointer;
    transform: all 0.2s;
}
.actions-container button:hover,
.actions-container button:focus {
    background-color: rgb(192, 192, 192);
}
.actions-container select {
    padding: 8px;
    min-width: 150px;
}
.corner-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: red;
  padding: 5px;
  font-size: 24px;
}
