@import url("https://fonts.googleapis.com/css2?family=Martian+Mono:wght@400;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html,
body {
  height: 100%;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input[type=submit] {
  box-shadow: none;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.tasklist {
  background-color: #B2533E;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tasklist__body {
  display: flex;
  flex-direction: column;
  padding: 4rem;
  border-radius: 1.25rem;
  background-color: #186F65;
  max-width: 25rem;
}
.tasklist__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 4.5rem;
  color: #B5CB99;
}
.tasklist__input {
  padding: 2rem;
  border: none;
  border-radius: 1rem;
  outline: none;
}
.tasklist__button {
  padding: 2rem;
  border: none;
  border-radius: 1rem;
  outline: none;
  transition: all 0.3s;
  cursor: pointer;
  background-color: #B5CB99;
}
.tasklist__button:hover {
  transition: all 0.3s;
  background-color: #FCE09B;
}
@media (max-width: 34.6875rem) {
  .tasklist__functiobility {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .tasklist__button {
    padding: 1rem;
    max-width: 6.25rem;
  }
  .tasklist__input {
    padding: 1rem;
  }
}
.tasklist__list {
  margin-top: 4rem;
  cursor: pointer;
  word-wrap: break-word;
}
.tasklist__list li {
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
}
.checked {
  background: #888;
  color: #fff;
  text-decoration: line-through;
}

.close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
}

.close:hover {
  background-color: #f44336;
  color: white;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: "Martian Mono", monospace;
}

.page {
  flex: 1 1 auto;
}

[class*=__container] {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 1109.98px) {
  [class*=__container] {
    max-width: 970px;
  }
}
@media (max-width: 990.98px) {
  [class*=__container] {
    max-width: 750px;
  }
}
@media (max-width: 767.98px) {
  [class*=__container] {
    max-width: none;
  }
}