* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'Open Sans', serif;
}

.main {
  max-width: 900px;
  margin: auto;
  padding: 0.5rem;
  text-align: center;
}

.my-container {
	position: absolute;
    width: 100%;
    height: auto;
    background: #113b65;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}

.error {
    color: red;
    font-size: 14px;
    font-weight: 600;
}

.todo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	margin-top: 50px;
}

.todo-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #e4e4e4;
    margin: 3px;
    padding: 3px;
    font-size: 14px;
    font-weight: 600;
}

.todo-box button {
    color: black;
    border: hidden;
    outline: none !important;
    cursor: pointer;
}