#emailList, #socialLinks, #developer
{
   margin: 0 auto;
   padding: 30px;
   max-width: 800px;
}

.emailList-container #formText
{
    margin: 5px auto;
    font-size: 12px;
}

#email-form
{
    background-color: #ddd8d8;
    padding: 20px;
}

input[type=email], textarea, input[type=text]
{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit]
{
    width: 100%;
    background-image: linear-gradient(to right, #3c50a7, #ac41b6);
    border: none;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#email-form button
{
    position: relative;
    width: 40px;
    height: 40px;
    float: right;
}

.exit
{
    cursor: pointer;
    width: 50px;
    height: 2px;
    right: 20px;
    position: relative;
    background-color: red;
}

.exit::before
{
    width: 40px;
    height: 2px;
    position: absolute;
    background-color: red;
    
    content: " ";
    transform: rotate(45deg);
}

.exit::after
{
    width: 40px;
    height: 2px;
    position: absolute;
    background-color: red;
    
    content: " ";
    transform: rotate(-45deg);
}

.exit::before
{
    content: " ";
}

h3 
{
    text-align: center;
}