html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  height: 100%;
  width: 100%;
}


.image1_text {
  font-size: 32px;
  font-weight: 800;
  color: white;
  user-select: none;
  margin-top: 6px;
}

.image1_frame {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#palette {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.color {
  width: 20%;
  height: 100%;
       cursor: pointer;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       border: none;

    }
    .hex {
       margin-top: 5px;
       font-size: 16px;
       color: white;
      font-weight: 800;}

.image1 {
  width: 128px;
  height: auto;
}



@media screen and (max-width: 800px) {
  
  .image1 {
    width: 64px;
    height: auto;
  }
  .image1_text {
    font-size: 16px;
  }
  .color {
    width: 100%;
    height: 20%;
  }
  #palette {
    flex-direction: column;
  }
  
}