/* Import Fonts */
@import url('https://fonts.googleapis.com/css?family=Pacifico|Quicksand:400,700');

/* Global */
* {
   margin: 0;
   padding: 0;
   outline: 0;
}

body {
   height: 100vh;
   width: 100%;
   background: #000;
   overflow: hidden;
}

/* Content */
.wrapper {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   height: 100vh;
   width: 100%;
}

.wrapper #colorTxt {
   font-family: 'Quicksand', sans-serif;
   font-size: 3em;
   font-weight: 700;
   color: whitesmoke;
   margin-bottom: 15px;
}

.wrapper #generateBtn {
   width: 200px;
   height: 50px;
   font-family: 'Pacifico', sans-serif;
   font-size: 1.2em;
   font-weight: lighter;
   color: #000;
   border: 1.5px solid aliceblue;
   border-radius: 5px;
   background: whitesmoke;
   cursor: pointer;
   -webkit-box-shadow: 0px 2px 30px 5px rgba(0,0,0,0.1);
   -moz-box-shadow: 0px 2px 30px 5px rgba(0,0,0,0.1);
   box-shadow: 0px 2px 30px 5px rgba(0,0,0,0.1);
   transition: all 200ms ease;
}

.wrapper #select {
   margin-bottom: 10px;
   width: 100px;
   height: 25px;
   background: aliceblue;
   font-family: 'Quicksand', sans-serif;
   font-size: 1.1em;
   font-weight: bolder;
   border: 1.5px solid aliceblue;
   border-radius: 5px;
   color: #000;
   -webkit-box-shadow: 0px 2px 30px 5px rgba(0,0,0,0.1);
   -moz-box-shadow: 0px 2px 30px 5px rgba(0,0,0,0.1);
   box-shadow: 0px 2px 30px 5px rgba(0,0,0,0.1);
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   background-image: url('../img/arrow.png');
   background-repeat: no-repeat;
   background-position: 95% 55%;
   padding-left: 7px;
}

/* Color Changing Transition */
body, .wrapper #generateBtn, .wrapper #select {
   transition: all 200ms ease;
}

/* Responsiveness */
@media only screen and (max-width: 400px) {

   .wrapper #colorTxt {
      text-align: center;
      font-size: 2.3em;
   }

}
