/*******************************************
FONTS
*******************************************/
@import url(https://fonts.googleapis.com/css?family=Lobster);
@import url(https://fonts.googleapis.com/css?family=Arimo);

/*******************************************
BASE STYLING
*******************************************/
* {
    box-sizing: border-box;
    font-family: 'Arimo', sans-serif;
}

h1, h2 {
    font-family: 'Lobster', sans-serif;
    text-align: center;
    text-shadow: 1px 1px 5px black;
    letter-spacing: 2px;
    color: white;
}

body {
    
    line-height: 1.2;
    background-color: #50514F;
}

ul {
    margin: 0 5px;
    padding: 10px;
    
}

li {
    padding: 10px 0;
    list-style-type: none;
    color: black;
    font-weight: bold;
    margin: 0;
    cursor: pointer;
    display: flex;
    flex-flow: row wrap;
}


/*******************************************
CONTAINERS
*******************************************/

#container {
  margin: 10px auto;
  width: 550px;
  background-color: red;
  padding: 15px;
  background-color: #247BA0;
  border-radius: 5px;
  box-shadow: 0 6px 10px -4px black;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  
}

#container-two {
    background-color: #fff;
    width: 550px;
    height: 500px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 6px 10px -4px black;
    display: flex;
}


/*******************************************
INPUT FIELD
*******************************************/

input[type=text] {
    height: 30px;
    width: 190px;
    border: none;
    background-color: #ddd;
    border-radius: 5px;
}

input:focus {
    background-color: white;
}

/*******************************************
BUTTONS
*******************************************/
#btn, 
#removeBtn,
#clear {
    width: 85px;
    height: 30px;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 6px 8px -6px black;
    margin: 0 10px;
    text-align: center;
}

#btn,
#clear {
   background-color: #70C1B3;
   border-bottom: 1px solid #397A00;
}

#removeBtn {
    background-color: #F25F5C;
    border-bottom: 1px solid #880000;
}

#delete {
   margin: 0 15px;
   border: none;
   background-color: #F25F5C;
   border-bottom: 1px solid #880000;
   color: white;
   font-weight: bold;
   border-radius: 20px;
   width: 30px;
}

#removeBtn:hover,
#btn:hover,
#delete:hover,
#clear:hover {
    opacity: .75;
    cursor: pointer;
}
/*******************************************
STYLES USED IN SCRIPT
*******************************************/

.crossOut {
    text-decoration: line-through;
    color: red;
    font-weight: normal;
}

#warning {
    color: red;
    font-weight: bold;
    
}

/*******************************************
MEDIA QUERIES
*******************************************/

@media (max-width: 576px) {
    #container {
        flex-flow: column wrap;
        align-items: center;
        width: 100%;
        
    }
    #container-two {
        width: 100%;
    }
    input[type=text] {
        width: 100%;
        margin: 5px auto;
        height: 40px;
    }
    
    #btn, 
    #removeBtn,
    #clear {
        margin: 5px auto;
        border-radius: 0;
        width: 100%;
        height: 40px;
        display: flex;
        justify-content: center;
        font-size: 1.2em;
    }
    
}

/*@media (orientation: landscape) {*/
/*    #container {*/
/*        flex-flow: row wrap;*/
/*        justify-content: space-between;*/
        
/*    }*/
/*    #btn, */
/*    #removeBtn,*/
/*    #clear {*/
/*        margin: 5px auto;*/
/*        border-radius: 0;*/
/*        width: 100%;*/
/*        height: 40px;*/
/*        display: flex;*/
/*        justify-content: center;*/
/*        font-size: 1.2em;*/
/*    }*/

/*    input[type=text] {*/
/*        width: 100%;*/
/*        margin: 5px auto;*/
/*        height: 40px;*/
/*    }*/
/*}*/
