body {
    position: relative;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    height: 100vh;
}

.version {
    position: absolute;
    margin: 0px;
    bottom: 5px;
    right: 5px;
}

.text-input {
    padding: 10px;
    margin-right: 5px;
    border: 2px black solid;
    border-radius: 6px;
    cursor: auto;
}

.safe-bnt {
    padding: 10px;
    border: 2px black solid;
    background-color: transparent;
    border-radius: 6px;
    cursor: pointer;
}

.safe-bnt:hover {
    background-color: #e6e6e6;
}

.top-container {
    margin-bottom: 50px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.to-do {
    border: 2px black solid;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.to-do-bnt-container {
    display: flex;
    flex-direction: column;
}

.to-do-bnt {
    display: flex;
    justify-content: center;
    border: 2px black solid;
    border-radius: 6px;
    cursor: pointer;
}

.to-do-bnt:hover {
    scale: 1.1;
}

.to-do-bnt1 {
    background-color: #ff4545;
    margin-bottom: 5px;
    padding: 3px;
}

.to-do-bnt2 {
    background-color: #00c100;
    padding: 3px;
}