* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	color: black;
}

body, html {
	min-height: 100%;
	height: 100%;
	background-color: #E7E4DC;
}

body {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
}

input[type="file"] {
	display: none;
}

.heading {
	place-self: center;
	grid-column: 1 / span 3;
	grid-row: 1;
	text-align: center;
	text-shadow: 0px 0px 2px black;
}

.heading__image {
	max-width: 40%;
	filter: drop-shadow(0px 0px 5px black);
}

.heading__title {
	font-size: 3rem;
	font-weight: 200;
}

.heading__subtitle {
	font-weight: 400;
}

canvas {
	grid-column: 2;
	grid-row: 2;
	border: 1px solid black;
}

.note {
	grid-column: 1;
	grid-row: 2;
	line-height: 25px;
	padding-inline: 2rem;
}

.settings {
	grid-column: 3;
	grid-row: 2;
	padding-inline: 2rem;
}

.setting {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.setting__button {
	padding-inline: 0.5rem;
	padding-block: 0.25rem;
	background-color: transparent;
	border: 1px solid black;
	cursor: pointer;
}

.setting > .setting__button {
	display: flex;
	justify-content: flex-end;
}

.setting:not(:last-child) {
	margin-bottom: 1rem;
}

.setting__button:hover {
	background-color: #272C30;
	color: #655E3C;
}

.setting__text-input {
	margin-inline: 0.5rem;
	width: 100%;
	background-color: transparent;
	border-style: unset;
	border-bottom: 1px solid black;
}

.setting__text-input:focus {
	outline: none;
}

.poppins-thin {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: normal;
  }
  
  .poppins-extralight {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
  }
  
  .poppins-light {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
  }
  
  .poppins-regular {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
  }
  
  .poppins-medium {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
  }
  
  .poppins-semibold {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
  }
  
  .poppins-bold {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
  }
  
  .poppins-extrabold {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: normal;
  }
  
  .poppins-black {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: normal;
  }
  
  .poppins-thin-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: italic;
  }
  
  .poppins-extralight-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: italic;
  }
  
  .poppins-light-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: italic;
  }
  
  .poppins-regular-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: italic;
  }
  
  .poppins-medium-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: italic;
  }
  
  .poppins-semibold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: italic;
  }
  
  .poppins-bold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: italic;
  }
  
  .poppins-extrabold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: italic;
  }
  
  .poppins-black-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: italic;
  }
  