* {
  font-family: 'Amatic SC', cursive;
  overflow: hidden;
}

body,
main {
  height: 100vh;
  width: 100vw;
  padding: 0px;
  margin: 0px;
  background-color: black;
}

main {
  display: flex;
  flex-flow: column;
}

header {
  display: flex;
  justify-content: space-between;
  height: 7vw;
}

header > h1 {
  font-size: 5vw;
  margin: 8px 0 0 10px;
  padding: 0px;
  color: white;
}

header > h1 > .colors-flat {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tool-tip {
  font-size: 2rem;
  height: 90%;
  color: white;
}

.header-buttons-container {
  display: flex;
  align-items: center;
}

.header-button {
  height: 70%;
  font-size: 2vw;
  margin: 10px;
}

.palette {
  display: flex;
}

.color {
  height: 100vh;
  width: 20vw;
  font-size: 4.5vw;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.lock {
  height: 4.5vw;
  width: 4.5vw;
}

.saved-nav {
  position: absolute;
  top: 0px;
  right: -20vw;
  height: 100vh;
  width: 20vw;
  display: flex;
  flex-flow: column;
  background: white;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.close-button {
  align-self: end;
  height: 40px;
  width: 40px;
  margin: 5px;
  border: 0;
  background-color: transparent;
}

.navOpen {
  animation: slideLeft 0.5s ease-in;
  transform: translateX(-100%);
}

.navClose {
  animation: slideRight 0.5s ease-in;
}

@keyframes slideLeft {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes slideRight {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

.display-boxes {
  margin: 1rem 0px 0px 0.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0.5vw;
}

.box {
  height: 2.5vw;
  width: 2.5vw;
  border-radius: 0.7rem;
}

.header-button,
.lock,
.close-button,
.delete-btn {
  cursor: pointer;
}