*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Exo', sans-serif;
}
header,content,footer{
  display:block;
  width:100%;
  height:200px;
  padding:50px 20%;
}
header{
  background:#efefef;
}
content{
  background-color:#cccccc;
}
footer{
  background-color:#afafaf
}
p, h1{
  display:inline-block;
  padding:5px;
}
.custom-menu {
  display: none;
  z-index: 1000;
  position: absolute;
  overflow: hidden;
  border: 1px solid #bdc3c7;
  white-space: nowrap;
  background: #303030;
  color: #fff;
}
.custom-menu li {
  padding: 9px 15px;
  cursor: pointer;
  list-style-type: none;
  transition: all .3s ease;
  user-select: none;
  font-weight:200;
}
.custom-menu li:nth-child(1){
  pointer-events:none;
  color:#b2b2b2;
}
.custom-menu hr{
  margin:0 12px;
  border:none;
  background-color:#545454;
  height:1px;
}
.custom-menu li:hover {
  background-color: #545454;
}
.colorpicker{
  position:fixed;
  z-index:20;
  display:none;
  flex-wrap:wrap;
  top:10%;
  left:10%;
  height:80%;
  width:80%;
  background-color:white;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
}
.color{
  display:block;
  flex-grow:1;
  transition:.5s ease-in-out;
  cursor:pointer;
}
.textChange{
  display:none;
  position:fixed;
  z-index:20;
  top:calc(50% - 25px);
  width:20%;
  height:50px;
  left:40%;
}
.textChange input{
  height:100%;
  width:100%;
  padding:10px;
  font-size:1.1em;
}
.overlay{
  display:none;
  position:fixed;
  z-index:10;
  width:100%;
  background-color:black;
  height:100%;
  opacity:.5;
  top:0;
}
.disabled{
  pointer-events:none;
  color:#a3a3a3;
}