* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  height: 100vh;
  overflow: hidden;
  position: relative;
  font-family: sans-serif;
  line-height: 1.5;
  color: #fff;
  background-color: #212429;
}

#square {
  display: block;
  height: 500px;
  width: 500px;
  position: absolute;
  right: -250px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#trigger {
  font-size: 2rem;
  color: #fff;
  background-color: #0077FF;
  padding: .6rem;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: 10px;
  bottom: 10px;
}

#trigger:hover {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: ease-in-out .3s;
  transition: ease-in-out .3s;
}

#colorMenu {
  display: none;
  width: 200px;
  padding: .5rem;
  background-color: #3E3F41;
  border-radius: .5rem;
  position: absolute;
  left: 20px;
  bottom: 70px;
  -webkit-animation: popUp ease-in-out .2s;
          animation: popUp ease-in-out .2s;
}

#colorMenu #menuHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#colorMenu #menuHeader h3 {
  font-weight: 500;
}

#colorMenu #menuHeader span {
  font-size: 1.5rem;
  cursor: pointer;
}

#colorMenu #menuBody {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: .5rem;
}

#colorMenu #menuBody span {
  height: 40px;
}

.blue {
  background-color: #0077FF;
  border-top-left-radius: .5rem;
}

.red {
  background-color: #DE3647;
  border-top-right-radius: .5rem;
}

.green {
  background-color: #198855;
  border-bottom-right-radius: .5rem;
}

.yellow {
  background-color: #FEC009;
  border-bottom-left-radius: .5rem;
}

@-webkit-keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/*# sourceMappingURL=index.css.map */