#image {
  display: none;
}

.picture {
  width: 450px;
  aspect-ratio: 16/9;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  border: 2px dashed currentcolor;
  cursor: pointer;
  font-family: sans-serif;
  transition: color 300ms ease-in-out, background 300ms ease-in-out;
  outline: none;
  overflow: hidden;
}

.picture:hover {
  color: #777;
  background: #ccc;
}

.picture:active {
  border-color: turquoise;
  color: turquoise;
  background: #eee;
}

.picture:focus {
  color: #777;
  background: #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.picture__img {
max-width:450px;
 max-height:253px;
 position:relative;
}

.remove-button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  color: #111111;
  padding:5px 10px;
  border-radius: 20%;
  border: 3px solid #111111;
  font-size: 1.4rem;
  font-weight: bold;
  transition: color 50ms ease-in-out, background 50ms ease-in-out;
}

.remove-button:hover {
  color: white;
  background-color: #111111;
  border-color: white;
}

@media (max-width: 481px) {
  .picture {
    max-width: 80vw;
    margin: auto;
  }
  .picture__img{
    max-width: 80vw;
    max-height: 20vh;
  }
  .remove-button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  color: #111111;
  padding:5px 10px;
  border-radius: 20%;
  border: 3px solid #111111;
  font-size: 1.4rem;
  font-weight: bold;
  transition: color 50ms ease-in-out, background 50ms ease-in-out;
}

}