@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #303446;
  color: #c6d0f5;
}

.heading {
  text-align: center;
  justify-content: center;
}

.color-palatte {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.color {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  cursor: pointer;
  border: 2px solid #c6d0f5;
  transition: transform 0.2s;
  position: relative;
}

.color:hover {
  transform: scale(1.1);
}

.color span {
  display: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.color:hover span {
  display: block;
}

a {
  text-decoration: none;
  color: #c6d0f5;
  cursor: pointer;
}

a:hover {
  color: #737994;
  text-decoration: underline #737994;
}
