#main-selo {
  width: 100%;
  min-height: 600px;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 40px 20px;

  box-sizing: border-box;
}

#main-selo h1 {
  margin: 0 0 10px;
  text-align: center;
}

#main-selo > p {
  margin: 0 0 25px;
  text-align: center;
}

#fotoInput {
  margin-bottom: 30px;
}

#editor {
  width: 500px;
  height: 500px;

  max-width: 90vw;
  max-height: 90vw;

  overflow: hidden;

  border-radius: 10px;
  border: 2px solid #ddd;

  background: #eee;
}

#canvas {
  display: block;

  width: 100%;
  height: 100%;

  touch-action: none;

  cursor: grab;
}

#canvas:active {
  cursor: grabbing;
}

#instrucao {
  margin-top: 20px;

  text-align: center;

  font-size: 14px;
  line-height: 1.5;

  color: #666;
}

#baixarBtn {
  margin-top: 15px;

  padding: 12px 25px;

  border: none;
  border-radius: 8px;

  background-color: #333;
  color: white;

  font-size: 16px;
  font-weight: bold;

  cursor: pointer;
}
#baixarBtn:hover {
  background-color: #555;
}

/* #main-selo > div,
#links-principais {
  width: 100%;
} */

@media (max-width: 600px) {
  #main-selo {
    padding: 30px 15px;
  }

  #editor {
    width: 90vw;
    height: 90vw;

    max-width: none;
    max-height: none;
  }

  #baixarBtn {
    width: min(90vw, 400px);
  }
}
