@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #100d38;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-align: center;
  font-size: 30px;
  margin: 20px;
}

.container {
  display: flex;
  padding: 20px;
  justify-content: space-between;
}

.menu {
  display: flex;
  flex-direction: column;
  background-color: #08007a;
  border-radius: 10px;
  padding: 20px;
  justify-content: space-around;
}

ul {
  margin: 20px;
}

li {
  list-style: none;
  margin: 8px;
  cursor: pointer;
}

.active {
  color: rgb(198, 106, 255);
}

img {
  margin-right: 5px;
}

.fill {
  margin-top: 20px;
}

input {
  cursor: pointer;
  margin: 5px;
}

.clr {
  padding: 20px;
}

.clr input {
  height: 18px;
  border: none;
}

button {
  cursor: pointer;
  background-color: rgb(77, 11, 139);
  color: white;
  border-radius: 5px;
  padding: 8px;
  margin: 5px;
  border: none;
}

button:active {
  transform: scale(1.08);
}

canvas {
  width: 75vw;
  background-color: white;
  border-radius: 10px;
}
