html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

img,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
}

td:not([align]),
th:not([align]) {
  text-align: left;
}

html {
  height: 100%;
  font-size: clamp(16px, 2vw, 18px);
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: Pretendard, BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

code,
pre {
  font-family: Courier, "Courier New", monospace;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
  font-family: Pretendard, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
  color: snow;
  background-color: darkslateblue;
  cursor: default;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.header {
  flex: 0 0 auto;
  margin-bottom: -1.25rem;
  padding: 1rem;
}

.main {
  flex: 1 1 auto;
  opacity: 0;
  transition: opacity 1s;
}

.is-loaded .main {
  opacity: 1;
}

.container {
  max-width: 96rem;
  margin: 0 auto;
}

.section {
  padding: 1rem;
}

.chat {
  list-style-type: none;
  flex: 1 1 auto;
}

.chat li:not(:last-child) {
  margin-bottom: .75rem;
}

.card {
  position: relative;
  max-width: calc(100% - 1rem);
  padding: .75rem;
  color: snow;
  border: .1rem solid rgba(255,255,255,.25);
  border-radius: .5rem;
}

@media screen and (min-width: 600px) {
  .card {
    max-width: calc(50% + .5rem);
  }
}

.card.me {
  margin-left: auto;
}

.card-name {
  font-weight: 700;
}

.card-date {
  margin-top: .5rem;
  font-size: .875rem;
  text-align: right;
  opacity: .375;
}

.form {
  position: sticky;
  z-index: 999;
  bottom: 0;
  margin-bottom: -1rem;
  padding: .75rem 0 1rem ;
  background-image: linear-gradient(rgba(72,61,139,0), rgba(72,61,139,1)), linear-gradient(rgba(72,61,139,0), rgba(72,61,139,1)), linear-gradient(rgba(72,61,139,0), rgba(72,61,139,1));
}

.form form {
  display: block;
  max-width: calc(100% - 1rem);
  margin-left: auto;
  padding: 0 .75rem;
  background-color: darkslateblue;
  border: .1rem solid rgba(255,255,255,.5);
  border-radius: .5rem;
}

@media screen and (min-width: 600px) {
  .form form {
    max-width: calc(50% + .5rem);
  }
}

.input {
  appearance: none;
  display: block;
  width: 100%;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: snow;
  background-color: transparent;
  border: 0;
  border-bottom: .1rem solid rgba(255,255,255,.25);
  border-radius: 0;
  outline: 0;
}

.input[name="name"] {
  font-weight: 700;
}

.input[name="honeypot"] {
  display: none;
}

.button {
  appearance: none;
  display: block;
  width: 100%;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: snow;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.content {
  position: relative;
  font-size: 1rem;
  line-height: 1.625;
}

.content a:not(.rainbow) {
  word-wrap: break-word;
  border-bottom: 1px solid currentColor;
}

.content a:not(.rainbow):hover {
  opacity: .5;
}