@import url('https://fonts.googleapis.com/css?family=Boogaloo');
html,
body {
    height: 100%;
}


body {
    background: url('../img/bcg2.jpg') no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;


}

/* Aplication Container */

.app-container {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    background: rgba(51, 122, 183, 0.25);
    border-radius: 10px;
    box-shadow: -1px 5px 35px 5px rgba(255, 255, 255, 1);

}

.app-container h3 {
    font-family: 'Boogaloo', cursive;
    margin: 0 0 30px;
    font-size: 3.5em;
    font-weight: 800;
    color: #f5f5f5;
    text-shadow: 4px 4px 2px #333;
    letter-spacing: 10px;
}


.new-task-container {

    margin-bottom: 40px;
}


/* Task List */

.tasks-container ul {
    margin: 0;
    padding: 0;
    list-style: none;

}

.single-task {

    margin-bottom: 10px
}



/* Icon style */

.toggle-complete-btn:hover {
    color: lightgreen;
}

.btn-primary:hover{
    color: lightgreen;
}

@media (max-width: 395px){
.app-container h3{
        font-size: 2.7em;     
    }
      
}








