* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(22, 69, 98);
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

.form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 20px;
}

.text-input {
    width: 100%;
    height: 40px;
    font-size: 20px;
    padding-left: 8px;
    border-radius: 10px;
}

.create-btn {
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 30px;
    border-radius: 10px;
}

.circles-btn {
    display: flex;
    justify-content: space-between;
}

.circle-color {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
}

.red {
    background-color: red;
}

.blue {
    background-color: blue;
}

.green {
    background-color: green;
}

.yellow {
    background-color: yellow;
}

.orange {
    background-color: orange;
}

.pink {
    background-color: pink;
}

.block-result {
    width: 100%;
    max-width: 600px;
    height: 40px;
}

.result {
    font-size: 25px;
}

.ress {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 10px;
    border-radius: 9px;
    margin: 10px 0;
    padding: 10px;
    word-break: break-all;
}

.block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(34, 74, 148);
    padding: 0 10px;
}

.completed {
    text-decoration: line-through;
}

@media (max-width: 419px) {
    .main {
        height: 40vh;
    }
    .result {
    font-size: 19px;
}
}