/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

.flex-column-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-column-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.flex-column-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.flex-row-start {
  display: flex;
  justify-content: start;
  align-items: center;
}

.top-bottom-section {
  padding: 0.5rem 1rem;
}

.main-padding-default {
  padding: 0.5rem 0;
}

.main-padding-large {
  padding: 3rem 0;
}

.header {
  font-size: 4rem;
  text-align: center;
}

.subheader {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
}

.body-text {
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: right;
  padding: 0.4rem;
}

.time {
  font-family: "DotGothic16", monospace;
  font-size: 3.5rem;
  text-align: center;
}

.show {
  display: flex;
}

.hide {
  display: none;
}

.app-name {
  font-size: 3.7rem;
  color: #df85ff;
  padding-bottom: 10rem;
}

.app-name-small {
  font-size: 1.5rem;
  color: #1ea8fc;
  padding-bottom: 3rem;
}

.name-prompt {
  padding: 1rem 4rem 1rem 4rem;
}

.text-input {
  width: 18rem;
  background: none;
  border: none;
  border-bottom: 3px dotted #546A90;
  color: #ffd400;
}

.text-input:focus {
  border-color: #ffd400;
  outline: #ffd400;
}

.icon {
  --ggs: 4;
  margin-bottom: 4rem;
}

.todo-prompt {
  white-space: nowrap;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #df85ff;
}

.mode-select {
  margin: 0.5rem 0.5rem;
}
.mode-select .mode-focus {
  font-weight: bold;
  color: #1F1147;
  background: #df85ff;
  border: 1px solid #df85ff;
  padding: 0.2rem;
}
.mode-select .mode-idle {
  border: 1px solid #546A90;
  padding: 0.2rem;
}

.question {
  padding-bottom: 1rem;
}

.main-focus-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #ffd400;
}
.main-focus-container .todo-label {
  min-width: fit-content;
  line-height: 1.3;
}

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

.hidden {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.edit {
  color: #546A90;
  --ggs: 0.8;
  cursor: pointer;
}

.main-focus-complete {
  color: #546A90;
  --ggs: 0.8;
  cursor: pointer;
}

.todo-input {
  width: 100%;
  background: none;
  font-family: monospace;
  font-size: 0.8rem;
  line-height: 1.3;
  border: none;
  padding: 0.2rem 0.2rem 0.2rem 0;
  color: #546A90;
  text-align: left;
}

.todo-input:focus {
  outline: #ffd400;
  color: #ffd400;
}

.mode-text {
  overflow-y: auto;
  margin: 0 0.5rem;
  line-height: 1.3;
  width: 96%;
  scrollbar-width: thin;
  scrollbar-color: #546A90 #1F1147;
}

.todo-input-container {
  width: 100%;
}

.todo-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.line {
  width: 100%;
  gap: 0.5rem;
}

.terminal-text {
  font-size: 0.9rem;
}

.mode-idle {
  cursor: pointer;
}

.mode-idle:hover {
  border-color: #df85ff;
  color: #df85ff;
}

.mode-focus {
  cursor: default;
}

body {
  width: 100vw;
  height: 100vh;
  font-family: monospace;
  color: #546A90;
  background: #0c0a20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 1000px) {
  body {
    transform: scale(1.4);
    overflow: hidden;
  }
  body header {
    display: none !important;
  }
}
.intro {
  width: 100%;
  height: 100%;
}

.screen-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  width: 70%;
}

main {
  width: 25%;
  min-height: 17rem;
  max-height: 17rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
main .greeting {
  width: 20rem;
  flex-direction: wrap;
  padding-bottom: 1rem;
  min-width: fit-content;
}
main .focus {
  color: #1ea8fc;
  padding-top: 4.6rem;
  align-items: flex-end;
}
main .focus .question {
  color: #df85ff;
}
main .icon {
  display: none;
}

footer {
  min-height: 17rem;
  max-height: 17rem;
  width: 27rem;
  border: 1px solid #df85ff;
  background: #1F1147;
  gap: 0.4rem;
  padding: 0.5rem 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1F1147;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1F1147;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #df85ff;
}

@media only screen and (max-width: 1000px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    height: 100dvh;
  }
  header {
    padding-top: 3rem;
  }
  .screen-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 7rem;
  }
  .screen-container main {
    text-align: center;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .screen-container main .focus {
    align-items: center;
  }
  .screen-container main .focus .text-input {
    text-align: center;
  }
  .screen-container footer {
    height: 10.5rem;
    width: 100%;
    border: none;
    border-top: 1px solid #df85ff;
    background: #1F1147;
    gap: 0.4rem;
    padding: 0.4rem 0;
  }
}

/*# sourceMappingURL=styles.css.map */
