* {
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
}
body {
    margin:0;
    padding:0
}
h1 {
    font-size: 2.5rem;
    color:#222;
    text-align: center;
}
label, input, textarea {
    display: block;
    margin: 0.5rem 0;
}
label {
    font-weight: bold;
}
input, textarea {
    font:inherit;
    padding:0.2rem 0.4rem;
    width:100%;
    max-width: 30rem;
    border:1px solid #ccc;
}
input:focus, textarea:focus {
    outline:none;
    background: #fff5f9;
}
button {
    font:inherit;
    background: #ff0062;
    border:1px solid #ff0062;
    cursor:pointer;
    color:white;
    padding:0.75rem 1rem;
}
button:focus {
    outline:none;
}
button:hover, button:active {
    background: #a80041;
    border-color:#a80041;
}
.projects {
    margin:1rem;
    border:1px solid #ff0062;
}
.projects header {
    background: #ff0062;
    height:3.5rem;
    display: flex;
    justify-content: center;
    align-items:center;
}
#finished-projects {
    border-color:#0044ff;    
}
#finished-projects header {
    background: #0044ff;
}
.projects h2 {
    margin:0;
    color:white;
}
.projects ul {
    list-style:none;
    margin:0;
    padding:1rem;
}
.projects li {
    box-shadow: 1px 1px 8px rgba(0,0,0,0.26);
    padding:1rem;
    margin:1rem;
    background: white;
}
.projects li h2 {
    color:#ff0062;
    margin:0.5rem 0;
}
#finished-projects li h2 {
    color:#0044ff;
}
.projects li h3 {
    color: #575757;
    font-size: 1rem;
}
.projects li p {
    margin:0;
}
.droppable {
    background: #ffe3ee;
}
#finished-projects .droppable {
    background: #d621ff;
}
#user-input {
    margin:1rem;
    padding:1rem;
    border:1px solid #ff0062;
    background: #f7f7f7;
}

/* Mobile specific styles (screens up to 600px wide)*/
@media only screen and (max-width: 600px) {
    h1 {
        font-size:1.5rem;        
        text-align:center;
        padding:10px;
    }
}