body,
html {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-content: center;
    height: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background-color: rgb(13, 141, 109);
}

.right-nav {
    display: flex;
    justify-content: center;
    height: 100%;
    margin-right: 50px;
    align-self: center;
}

.right-nav>a {
    font-family: myFirstFont;
    margin-left: 15px;
    font-size: large;
    align-self: center;
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.5s ease-in-out;
}

.left-nav {
    margin-left: 20px;
    font-family: myFirstFont;
    align-self: center;
}

#logo {
    height: 45px;
    margin-top: 24px;
}

.active-tab {
    padding: 0 10px;
    height: 100%;
    background-color: rgb(11, 121, 93);
}

#title {
    margin-left: 10px;
    white-space: nowrap;
    float: right;
    font-family: myFirstFont;
    color: white;
    font-size: 2rem;
}

.main-window {
    display: flex;
    justify-content: center;
}

.todo-window {
    align-self: center;
    margin-top: 100px;
    width: 50%;
    height: 450px;
    display: flex;
    background-color: rgb(13, 141, 109);
    border-style: solid;
    border-width: 5px;
    border-top: none;
    border-color: rgb(13, 141, 109);
    justify-content: flex-start;
    flex-direction: column;
}

.task-entry {
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: space-evenly;
}

.task-entry img {
    height: 80%;
}

.task-entry button {
    cursor: pointer;
    height: 34px;
    border: 1px solid transparent;
    transition: all .3s ease;
    background: #fff;
    border-color: #e8e8e8;
    color: #000;
    font-family: myFirstFont;
    text-transform: uppercase;
    line-height: 16px;
    font-size: 0.8em;
}

.task-entry button:hover {
    background: #e8e8e8;
    color: #3d3d3d;
}

.task-entry input[type=text] {
    height: 50px;
    width: 70%;
    font-size: 20px;
    outline: 0;
    border: none;
    padding-left: 5px;
}

input[type=text]::placeholder {
    font-size: 20px;
}

.task-entry button {
    margin-left: 5px;
    width: 20%;
    height: 50px;
}

.task-list {
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    justify-content: flex-start;
    height: 85%;
    background-color: rgb(215, 215, 215);
}

#no-task-info {
    margin-top: 50px;
    text-align: center;
    font-size: 3em;
}

.task-list label {
    font-size: 50px;
    color: rgb(128, 126, 126)
}

.task-node {
    justify-content: space-between;
    overflow-y: hidden;
    overflow-x: auto;
    margin-top: 5px;
    display: flex;
    min-height: 40px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.task-node:hover {
    background-color: rgb(233, 249, 233);
}

.task-left {
    display: flex;
    align-self: center;
}

.task-left label {
    margin-left: 10px;
    font-size: 1.2em;
}

.task-node label {
    font-size: 1.2em;
    margin-left: 10px;
    align-self: center;
}

.task-right {
    display: flex;
    align-self: center;
}

.task-entry label {
    font-family: myFirstFont;
    white-space: nowrap;
    color: white;
    font-size: 2.5em;
}

.del-ico:hover {
    color: red;
    cursor: pointer;
}

.edit-ico:hover {
    color: green;
    cursor: pointer;
}

.task-right i {
    margin-right: 10px;
}

.task-node input[type=checkbox] {
    accent-color: rgb(42, 160, 42);
    -ms-transform: scale(2);
    -moz-transform: scale(2);
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    margin-left: 15px;
}

.pending-task {
    font-family: myFirstFont;
    color: white;
    font-size: 3rem;
}

@font-face {
    font-family: myFirstFont;
    src: url(Lato-Bold.ttf);
}

.task-node::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#three-bars {
    display: none;
    position: relative;
    color: white;
    left: 30px;
    border: none;
    font-size: 24px;
    background-color: transparent;
    align-self: center;
}

#three-bars:hover {
    cursor: pointer;
}

#three-bars:active {
    background-color: rgb(10, 88, 69);
}

.menu-nav-bar {
    z-index: 9999;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: space-evenly;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.menu-nav-bar a {
    font-family: myFirstFont;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background-color: rgb(9, 107, 83);
    text-decoration: none;
    color: white;
}

@keyframes blinkingBackground {
    50% {
        background-color: rgb(235, 235, 235);
    }
    50% {
        background-color: #ff8c8c;
    }
}

@media screen and (max-width: 900px) {
    .right-nav > a {
        display: none;
    }

    #three-bars {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .task-entry img {
        display: none;
    }

    .todo-window {
        width: 70%;
    }
}

@media screen and (max-width: 500px) {
    .task-entry {
        flex-direction: column;
    }

    .task-entry button {
        width: 99%;
        margin: 5px;
    }

    .task-entry input[type=text] {
        width: 97%;
        margin-top: 5px;
    }

    .todo-window {
        width: 80%;
    }
}

@media screen and (max-width: 400px) {
    .task-entry label {
        font-size: 2rem;
    }
}