/* Common styles */
*{
    box-sizing: border-box;
}
body{
    background-color: #eee;
    margin: 0px;
}
h2{
    font-size: 32px;
}
.container{
    padding: 0 4%;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
input{
    display: block;
    width: 100%;
}
input[type='color']{
    width: 100px;
    height: 100px;
}
input[type='checkbox']{
    display: inline;
    width: 20px;
    height: 20px;
}
label{
    align-self: flex-start;
    font-size: 18px;
    font-family: sans-serif;
}
textarea{
    background-color: inherit;
    border-style: none;
    resize: none;
    align-self: flex-start;
    font-size: 16px;
}
.result_box{
    width: 150px;
    height: 150px;
    background-color: #00ecec;
}
/* Border radius generator */
.border-rarius-generator{
    background-color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Text shadow generator */
.text-shadow-generator{
    background-color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.example{
    font-size: 40px;
}  

/* Box shadow generator */
.box-shadow-generator{    
    background-color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}