@import "reset.css";

html {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  background-color: #ececec;
  padding: 20px;
  background-image: url(bg.jpg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

canvas {
  width: 800px;
  height: 800px;
  background-color: white;
  border-radius: 15px;
}

.color-option {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid white;
  transition: transform ease-in-out 0.15s;
}

.color-option:hover {
  transform: scale(1.2);
}

.btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.color-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

button,
label,
.brush {
  all: unset;
  padding: 10px 0;
  text-align: center;
  background-color: rgba(12, 36, 97, 1);
  color: white;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
  transition: background linear 0.1s;
}

button:hover {
  background-color: rgba(12, 36, 97, 0.8);
  color: white;
}

input#file {
  display: none;
}

.brush {
  display: flex;
  flex-direction: column;
}

.brush input {
  margin-top: 10px;
}
