*{
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    background :#f08d72;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 80px;
}

header {
    font-size: 1.5rem;
}

/* set position header and form to center */
header {
    min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.todo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.todo-list {
    min-width: 70%;
    list-style: none;
    margin-left: 0px !important;
    padding-inline-start: 0px !important;
}

@media screen and (max-width: 750px) {
    .todo-list {
      text-align: center;
      min-width: 70%;
      list-style: none;
      margin-left: 0px !important;
      padding-inline-start: 0px !important;
    }
}

.todo {
    margin: .5rem;
    background: white;
    color: black;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* to make sure all button push to end  */
.todo li {
    flex: 1;
}

.check-btn, .expand-btn{
    background: #ff6f47;
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1rem;
}

.twitter-share-btn, .facebook-share-btn, .linkedin-share-btn{
    background: #ff6f47;
    color: white;
    border: none;
    padding: .5rem;
    cursor: pointer;
    font-size: 1.2rem;
    background: none;
    text-decoration: none;
}

.check-btn, .expand-btn {
    background: teal;
}
.expand-btn {
    background: white;
    color: teal;
}

.check {
    text-decoration: line-through;
    opacity: .5;
}

.todo-item {
    padding: 0rem .5rem;
}

.section-title {
    font-size: 25px;
    padding-top: 40px;
}

.footer {
    position: fixed;
    height: 40px;
    background-color: #565c69;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin-bottom: 0px;
    text-align: center;
    padding: 10px;
}

.logo {
    display:inline-block;
    vertical-align: middle;
    max-width: 100px;
}

.social-share {
    text-align: center;
}

.detail-panel {
    margin: -.5rem .5rem 0rem 2.5rem;
    color: white;
    font-size: 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
}


@media screen and (max-width: 750px) {
    .detail-panel {
      margin: -.5rem .5rem 0rem .5rem;
    }
}

.show {
    display: block;
    padding: 30px 0px 30px 30px;
    background-color: white;
    color: black;
    transition: all 2s;
}

.footer-text {
    color: white;
}