* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

body {
  background: #333;
}

.container {
  background: #222;
  width: 80vw;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 5fr 3fr;
}

.img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.img img,
canvas {
  max-width: 45vh;
  max-height: 60vh;
}

.upload input {
  display: none;
}

.upload label {
  color: #fff;
  padding: 8px 20px;
  border: 2px #fff dashed;
  cursor: pointer;
}

.filters ul,
.filters ul li {
  display: flex;
  flex-direction: column;
  gap: 25px;
  direction: rtl;
}

.filters ul label {
  color: #fff;
}

.filters ul :last-child {
  flex-direction: row;
  justify-content: space-around;
  cursor: pointer;
}

.filters ul li a,
span {
  color: #fff;
  background-color: #060;
  padding: 10px 20px;
}

@media screen and (max-width: 650px) {
  .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
