main {
 width: 400px;
 margin: auto;
}

.text-container {
background: transparent;
border: 4px double var(--color);
border-radius: 0px;
text-align: center;
}

body {
 background: var(--background); 
}

:root[data-theme="light"] {
    --color: black;
    --background: white;
}

:root[data-theme="dark"] {
    --color: white;
    --background: black;
}

*, a {
 font-family: arial;
 color: var(--color);
}

.button, .button:hover {
 background: transparent;
 color: var(--color);
}

a {
 text-decoration: underline; 
}

.paste-info, .site-footer {
 display: none; 
}

.button.edit::before {
  content: "✿";
  font-size: 16px;
}

.button.edit {
  font-size: 0;
}