body {
    margin: 50px 0 0 0;
    padding: 0;
    width: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    color: #5e727a;
    font-size: 18px;
}

h1 {
    color: #719e40;
    letter-spacing: -3px;
    font-family: 'Lato', sans-serif;
    font-size: 100px;
    font-weight: 200;
    margin-bottom: 0;
}

h4 {
    font-size: 15pt;
}

.newToDoDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toDoBoard {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.eachToDoDiv {
    border: solid black 1px;
    border-radius: 15pt;
    padding: 0.5rem;
    margin: 5px;
    width: 50%;
    display:flex;
    justify-content: space-between;
}

.textInputBox {
    width: 15%;
    margin: 5px 0;
}

input[type=submit] {
    background-color: #679168;
    border-radius: 5px;
    border: 1px solid;
    font-size: 20pt;
}

.calendar {
    height:50%;
    width: 50%;
}

.calendar_flex {
    display: flex;
    justify-content: center;
}