@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
body{
	font: 'Source Sans Pro', sans-serif;
    color: rgba(0,0,0,.5);
    text-align: center;
    letter-spacing: .2em;
    min-height: 100vh;
    margin:0;
    padding: 0;
}

.colors{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.colors label{
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    margin: 0 10px;
}
.colors label.new-color{
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-style: dashed;
    cursor: pointer;
    opacity: .5;
    transition: opacity 1s;
}
.colors label.new-color:hover{
    opacity: .9;
    transition: opacity 1s;
}

.generated-css{
	font: 900 1em sans-serif;
    color: gainsboro;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.01em;
    padding: 20px 0;
    text-shadow: 2px 2px 20px black
}

header{
    min-height: 20vh;
    display: flex;
    align-items: center;
    box-sizing: content-box;
    /* background-image: linear-gradient(to right, #c8a109, #1bbaa5); */
}
header h1{
    font: 600 2em 'Source Sans Pro', sans-serif;
    color: rgba(0,0,0,.5);
    text-align: center;
    letter-spacing: .3em;
    width: 100%;
    margin: 0;
}
.hero{
    height: 80vh;
    width: 100vw;
}

input[type=color]{
    opacity: 0;
    cursor: pointer;
}

.options{
    font-family: cursive;
    margin: 20px 0;
}
.options select{
    background: whitesmoke;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    text-align: center;
    padding: 5px 0;
    border-radius: 30px;
    cursor: pointer;
}

.random-button{
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    width: 20%;
    margin: 0 auto;
    padding: 20px 0;
    cursor: pointer;
    transition: all 1s;
    text-transform: uppercase;
    user-select: none;
}
.random-button:hover{
    background: rgba(255,255,255,0.5);
    color: black;
    transition: all 1s;
}