<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("css2.css");
html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  background: #fcd5ce;
  overflow: hidden;
}
h3 {
  font-weight: 500;
  letter-spacing: 1px;
  text-align:center;
  margin-bottom:0;
  color: black;
}

.attribution {
  margin-top:1rem;
  font-size:12px;
  text-align: center;
  color: #f8ad9d;
}
.attribution a {
  text-decoration: none;
  color: #f08080;
}

main {
  margin: 1em auto;
  background: white;
  padding: 1rem 4rem;
  width: max-content;
  height: 23rem;
  overflow-y: scroll;
  border-radius: 5rem;
  box-sizing: border-box;
  display:block;
}
img {
  width: 2.5rem;
  background: #d8e2dc;
  border-radius: 50%;
  padding: 0.75rem;
  object-fit: contain;
}
article {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
article img {
  justify-self: flex-start;
}
article div {
  margin-left: 1rem;
}

main:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}
::-webkit-scrollbar {
  width: 8px;
  border-radius: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 12px;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f08080;
  border-radius: 12px;
  border-right: none;
  border-left: none;
  min-height: 10px;
  visibility: hidden;
}

main:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f8ad9d;
}
button {
  margin:0;
  border: 0;
  background: #f08080;
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-family: "Montserrat", monospace;
  font-weight: 300;
  letter-spacing: 2px;
}
button:hover{
  cursor:pointer;
  filter:invert(70%) brightness(160%);
}
button:active{
  filter:invert(70%) brightness(120%);
}
.appContainer{
  text-align:center;
}
textarea{
  resize:none;
  box-sizing: border-box;
  width:12rem;
  height:2rem;
  border-radius:5rem;
  padding: 0.5rem;
  display: inline-block;
}

#addBtn{
  height:2rem;
  padding:0 1rem;
  margin:0;
  display: inline-block;
}
.addContainer{
  display:flex;
  justify-content:center;
  margin-top: 0.5rem;
}
.disabled{
  pointer-events: none;
  filter: brightness(80%);
}</pre></body></html>