* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #eee;
}
#descript {
    padding:10px;
    background-color: #50e3c2;
    color: #fff;
}
#descript > h3 {
    width: 50%;
    display: inline-block;
}
.tasklink {
    display: inline-block;
    text-decoration: none;
    color: #ddd;
    text-shadow: 1px 1px 2px #000;
}
.tasklink:hover {
    color: #fff;
}
.root {
    display: flex;
    padding: 10px;
    border: 5px solid #ddd;
    justify-content: space-around;
    flex-direction: row;
    justify-content: space-around;
    align-items:center;
    background-color: #fff;
}
.child1 {
    padding: 10px;
    display: flex;
    margin:3px;
    justify-content: space-around;
    align-items:center;
    border: 2px solid red;
    background-color: #fff;
}
.child2 {
    display: flex;
    margin:3px;
    padding: 5px;
    align-items:center;
    justify-content: space-around;
    border: 2px solid green;
    background-color: #fff;
}
.child3 {
    margin:3px;
    padding: 5px;
    border: 2px solid blue;
    flex:0 1 auto;
    background-color: #fff;
}
section {
    margin-left: 10%;
    margin-top: 4%;
}
.form-control {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}
.btn {
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
    outline: none;
}
btn:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}
.animate {
    border-radius: 50px;
    transition: all 2s ease-in-out;
}
.normal {
    border-radius: 0;
    transition: all 1s ease-in-out;
}
.search {
    background-color: pink;
    border-radius: 50px;
    transition: all 2s ease-in-out;
}