/*
FANSITE NAMER by FEELIN ALIVE DESIGNS
created by Deanna @ FeelinAlive.net
*/
/** BODY & CONTAINERS **/

body {
    font-family: "Poppins", sans-serif;
    padding: 20px;
    color: #000000;
    background: #D66D75;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #E29587, #D66D75);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #E29587, #D66D75);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

#container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
h2 {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    font-size: 25pt;
    line-height: 25pt;
    padding: 0px;
    margin: 0px;
}
#welcomeblurb {
    width: 75%;
    margin: 0 auto;
    padding-bottom: 15px;
}
.disclaimer {
    font-size: 8pt;
}

textarea {
    width: 80%;
    text-align: center;
    height: auto;
    font-size: 12pt;
    line-height: 12pt;
    padding: 10px;
    border: none;
    background: #ffffff;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    font-family: "Poppins", sans-serif;
}

::placeholder {
    color: #000000;
}

button#generateBtn {
    width: 25%;
    text-align: center;
    height: auto;
    font-size: 12pt;
    line-height: 12pt;
    font-weight: 600;
    padding: 10px;
    border: none;
    background: #ffffff80;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    -webkit-transition: opacity 0.6s linear;
    opacity: 1;
    -webkit-transition: all 0.8s ease-in;
    -moz-transition: all 0.8s ease-in;
    transition: all 0.8s ease-in;
}
button#generateBtn:hover {
    background: #ffffff;
}
#output {
    margin-top: 5px;
    font-weight: bold;
    white-space: pre-line;
}

.possible-site-name {
    display: block;
    max-width: 420px;
    width: 100%;
    text-align: center;
    font-size: 12pt;
    padding: 10px;
    background: #ffffff;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    font-family: "Poppins", sans-serif;
    margin: 0 auto 5px;
}

button.copy-btn {
    float: inline-end;
    border: 0px;
    font-family: "Poppins", sans-serif;
    margin: -2px 0px;
    padding: 7px;
    width: 20%;
    line-height: 10pt;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
        -webkit-transition: opacity 0.6s linear;
    opacity: 1;
    -webkit-transition: all 0.8s ease-in;
    -moz-transition: all 0.8s ease-in;
    transition: all 0.8s ease-in;
}
button.copy-btn:hover {
    background: #d5d5d5;
}

div#credit {
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin: 10px;
    font-size: 10pt;
    color: #00000080;
}

div#credit a {
    color: #00000080;
    text-decoration: none;
}

div#credit a:hover {
    color: #000000;
}