body {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 20px;
  overflow: hidden;
}

p {
  margin: 0;
  font-size: 15px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.title {
  font-size: 25px;
  padding: 10px;
  margin: 0;
}

.color-code {
  width: 200px;
  text-align: center;
  padding: 8px;
  border: 1.3px dashed;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  .option {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    margin: 5px;
    &:hover {
      transform: scale(1.1);
      transition: 0.4s all;
    }
  }
}

footer {
  text-align: center;
  margin: 15px 0;
  color: #777;
  position: absolute;
  bottom: 0;
  width: 100%;
  p {
    font-size: 10px !important;
  }
  p:nth-child(1) {
    margin-bottom: 5px;
  }
}
