
body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  max-width: 600px;
  width: 100%;
}

.image {
  flex-shrink : 1;
}
.image img {
  width: 300px;
  height: 140px;
}

  .owner-info, .edit-timestamp, .site-footer, #theme-toggle, .edit {
  visibility: hidden;
}

:root[data-theme="light"] {
  --background-color: #fff;
  --text-color: #000;
  --accent-text-color: #000;
  --link-color: #000;
  --container-background-color: #fff;
  --accent-background-color: #fff;
}

:root[data-theme="dark"] {
  --background-color: #fff;
  --text-color: #000;
  --accent-text-color: #000;
  --link-color: #000;
  --container-background-color: #fff;
  --accent-background-color: #fff;
}

.scrollbox {
  height: 280px;
  width: 200px;
  overflow-y: hidden;
  background-color: #fff;
  padding: 10px;
  border: 2px ridge #ccc;
  box-sizing: border-box;
  box-shadow: 0 0 0 1px white, inset 0 0 0 1px white, 0px 0px 8px 0px #000;
  overflow: scroll;
  overflow-x: hidden;
  border-radius: 4px;
}

.scrollbox::-webkit-scrollbar {
  width: 12px;
}

.scrollbox::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  box-shadow: inset 0 0 3px rgba(76, 60, 52, 0.1);
}

.scrollbox::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  border: 2px solid rgba(247, 245, 236, 0.8);
  box-shadow: 0 0 4px rgba(76, 60, 52, 0.6);
}

.scrollbox::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 0 6px rgba(76, 60, 52, 0.8);
}

.scrollbox::-webkit-scrollbar-thumb:active {
  background: rgb(255, 255, 255);
}

.scrollbox::-webkit-scrollbar-corner {
  background: rgba(247, 245, 236, 0.05);
}
