* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none; /* remove o sublinhado dos links */
}

body {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #13111b;
  font-family: 'DM Sans', Helvetica, sans-serif;
}

h1 {
  color: #fff;
  margin-bottom: 20px;
}

#tela {
  border: 5px groove #c369c6;
  background-color: #191622;
  cursor: crosshair;
  border-radius: 25px;
  margin-bottom: 25px;
}

.colorArea {
  width: 800px;
  display: flex;
}

.color {
  flex: 1;
  height: 50px;
  cursor: pointer;
  border-radius: 20px;
  margin-left: 10px;
  transition: 0.3s;
}

.color.active {
  margin-top: -15px;
  transition: 0.3s;
}

.clear {
  border: 2px solid #988aa8;
  color: #988aa8;
  font-size: 1rem;
  font-family: 'DM Sans', Helvetica, sans-serif;
  cursor: pointer;
  background-color: #13111b;
  border-radius: 0.5rem;
  transition: color 0.2s, border 0.2s, border-radius 0.2s;
  padding: 10px;
  margin-top: 25px;
  font-weight: bold;
}

.clear:hover {
  color: #c66969;
  border: 2px solid #c66969;
  border-radius: 1rem;
}

footer {
  position: absolute;
  bottom: 30px;
}

.menu {
  display: flex;
  gap: 10px;
}

.menu-num,
.act {
  width: 50px;
  height: 50px;
  border: 1px solid #988aa8;
  color: #988aa8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  background-color: #13111b;
  border-radius: 0.5rem;
  transition: border-radius 0.1s;
}

.menu-num:hover {
  border: 1px solid #78d1e1;
  color: #78d1e1;
  border-radius: 0.8rem;
}

.act {
  border: 1px solid #c369c6;
  color: #c369c6;
  border-radius: 0.8rem;
}

.menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #988aa8;
  margin: 16px 0;
  font-weight: bold;
  font-size: 18px;
}
