body { 
    background: #ECEFF1; 
    color: rgba(0,0,0,0.87); 
    font-family: Roboto, Helvetica, Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
}

.message  { 
    background: white;
    max-width: 60vw; 
    margin: 16px auto 16px; 
    padding: 16px 16px; 
    border-radius: 5px; 
}

.thingsContainer{ 
    width: 95%;
    display: flex;
    overflow: auto;
    flex-wrap: wrap;
    flex-direction: row;
}

.thing { 
    background-color: #f1f1f1;
    padding: 8px; 
    margin: 8px;
    border-radius: 5px; 
    height: 250px;
    width: 150px;
    max-height: 250px;
    max-width: 150px;    
    box-shadow: 1px 1px 5px 1px #88888878;
    justify-content: space-between;
    flex-direction: column;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    align-content: space-between;
    flex-wrap: nowrap;
}

.thing input[type=text], select{
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border: 0px solid #ccc0;
    background-color: #0000;
  }

.thing textarea, select {
    width: 100%;
    display: inline-block;
    border: 1px solid #ccc0;
    box-sizing: border-box;
    background-color: #ffffff78;
    resize: none;
  }

.deleteButton { 
    text-align: center; 
    background: #5d0606; 
    text-decoration: none;    
    color: white; 
    padding: 4px; 
    border-radius: 4px; 
    justify-content: flex-end;
    display: flex;
}

.thumbnail { 
    width:150px;
    height:150px;
    border-radius: 4px; 
} 

h3 { 
    color: #855400; 
    font-weight: bold; 
    font-size: 18px; 
    margin: 0 0 8px; 
}

h2 { 
    color: #ffa100; 
    font-weight: bold; 
    font-size: 22px; 
    margin: 0 0 8px; 
}

h1 { 
    font-size: 24px; 
    font-weight: 300; 
    color: rgba(0,0,0,0.6); 
    margin: 0 0 16px;
}

p { 
    line-height: 140%; 
    margin: 16px 0 24px; 
    font-size: 14px; 
}

.mainButton { 
    display: block; 
    text-align: center; 
    background: #039be5; 
    text-transform: uppercase; 
    text-decoration: none; 
    color: white; 
    padding: 8px; 
    border-radius: 4px; 
    margin-top: 8px;     
    margin-bottom: 8px; 
}

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


#load, #auxText { 
    color: rgba(0,0,0,0.4); 
    text-align: center; 
    font-size: 13px; 
}

@media (max-width: 600px) {
  body { margin-top: 0; background: white; box-shadow: none; }
  body { border-top: 16px solid #ffa100; }
}

.footer {
    text-align: center;
    width: 100%;
  }
