main {
    background-color: rgb(187, 115, 255);
    margin: 0;
    padding: 0;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    user-select: none;
}

#mainContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style: none;
    height: 80%;

    background-color: white;
    border-radius: 8px;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11),
    0 5px 15px 0 rgba(0, 0, 0, 0.08);

    margin-top: 10%;
    margin-bottom: 10%;
}
p {
    width: 90%;
    margin: auto;
}

h1 {
    text-align: center;
    color: indigo;
    font-weight: bold;
}

textarea {
    resize: none;
	background-color: #F5F5F5;
    border-radius: 8px;
    box-shadow: inset 0 0 10px #000000;
    outline: 0;
    width: 100%;
    background-color: rgba(233, 233, 233, 0.979);
    padding: 10px 10px 0 10px;
}

textarea::-webkit-scrollbar {
	width: 10px;
    border-radius: 0 8px 8px 0;
	background-color: #F5F5F5;
}

textarea::-webkit-scrollbar-thumb {
	background-color: #7674e2;
    border-radius: 0 8px 8px 0;
}

textarea::-webkit-scrollbar-thumb:hover {
	background-color: #6a68cb;
}

#showcase {
    height: 25%;
    width: 90%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.644);
    box-shadow: inset 0 0 10px #000000;
    border-radius: 8px 8px 0 0;

    padding: 10px 5px 0 5px;
    margin: 0 auto 0 auto;
}

.inlineText {
    display: inline;
    font-size: 24px;
}

p button {
    padding: 8px 0 8px 0;
    cursor: pointer;
    border-radius: 8px;
    background-color: #7674e2;
    border: none;
    color: #f2f2f2;
    font-weight: bold;
    width: 50%;
    margin: 0 auto 0 auto;
    box-shadow: 0 8px 6px -6px black;
}

p button:hover {
    background-color: #6a68cb;
    box-shadow: inset 0 0 10px #000000;

}

#buttonClicked

#colorGenerator {
    max-height: 40px;
    border-style: solid;
}

#colorPicker[type="color"] {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    border: 1;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    border-color: black;
    padding: 0;
    overflow: hidden;
}

#colorPicker[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}
 
#colorPicker[type="color"]::-webkit-color-swatch {
    border: none;
}

#colorResult {
    user-select:text;
}

#bg-1,
#bg-2,
#bg-3 {
    width: 100%;
    height: 30px;
    box-shadow: inset 0 0 10px #000000;
    cursor: pointer;
}

#bg-1 {
    background-color: rgba(0, 0, 0, 0.644);
    margin: 10px 0 0 45px;
    border-radius: 0 0 0 8px;
}

#bg-2 {
    background-color: rgba(106, 140, 255, 0.705);
    margin: 10px 0 0 0;
}

#bg-3 {
    background-color: rgba(255, 32, 32, 0.616);
    margin: 10px 45px 0 0;
    border-radius: 0 0 8px 0;
}

#bg-1:hover {
    background-color: rgba(0, 0, 0, 0.744);
}

#bg-2:hover{
    background-color: rgba(106, 141, 255, 0.805);
}

#bg-3:hover {
    background-color: rgba(255, 32, 32, 0.716);
}