* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #333;
    color: #ccc;
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;
}

h1, h2 {
    color: #ff0;
}

p, textarea {
    color: #ccc;
}

.step-container {
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
}

input {
    padding: 10px;
    margin: 10px 0;
    background-color: #444;
    border: 1px solid #555;
    border-radius: 4px;
    color: #ccc;
}

textarea {
    padding: 10px;
    margin: 10px 0;
    background-color: #444;
    border: 1px solid #555;
    border-radius: 4px;
    color: #ccc;
    field-sizing: content;
}

a {
    color: #ccc;
    text-decoration: none;
}

footer {
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.todo_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#add_todo_button {
    width: 64px;
    height: 64px;
    background-color: #ff0;
    border: 1px solid #555;
    border-radius: 100%;
    color: #000;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#new_todo {
    flex: 1;
    margin: 0 8px;
}

#add_todo_button:hover {
    background-color: #ffcc00;
    scale: 1.1;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

#todo_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    font-size: 24px;
}

.delete-button {
    width: 24px;
    height: 24px;
    background-color: #ff4444;
    border: none;
    border-radius: 3px;
    color: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nunito-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}