* {
  box-sizing: border-box;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

html,
body {
  margin: 0;
}

.center {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.title {
  margin: 1rem 0;
}

.title>span:first-child {
  font-size: 2.5rem;
  font-weight: 600;
}

.title>span:last-child {
  font-size: 1.5rem;
  font-weight: 400;
}

.cropinfo>span {
  font-size: 2.5rem;
  font-weight: 600;
}

.btns{
  margin: 1rem 0;
}

#crop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  gap: 2rem;
}

.cropper-wrapper {
  width: 95%;
  max-width: 800px;
  height: 70%;

}

.imgbtn {
  width: 150px;
  aspect-ratio: 1.1547;
  background-color: #dfecff;
  border-radius: 10px;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

#buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#buttons>div {
  box-shadow: 0 2px 5px 1px rgba(64, 60, 67, .16);
  border-radius: 10px;
}

canvas {
  width: 100%;
}

.btn {
  border-radius: 5px;
  color: white;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  width: 7rem;
  cursor: pointer;
}

.btn:active {
  filter: brightness(0.9);
}

.btn:disabled{
  filter: grayscale(1);
}

#generateBtn {
  background-color: #3b71ca;
}

.confirmBtn {
  background-color: #14a44d;
}

.resetBtn {
  background-color: #9fa6b2;
}