@font-face {
  font-family: dico;
  src: url("https://file.garden/aG6wzaSlI01WWRJg/fonts/Dico.ttf");
}

* {
  font-family: dico;
}

#main {
    width: 100%;
    margin: auto;
  font-size: 0.8rem;
    display: flex;
      justify-content: center;
      align-items: center;
        text-transform: uppercase;
  color: black;
}

#contain {
    width: 450px;
    background: var(--sky);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 15px 0 0 15px;
}

#left {
    width: 300px;
}

#right {
    width: 150px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.big {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: 12px;
    transform: scale(2,1);
    width: 0;
}

.info {
    text-align: right;
    width: 60%;
    padding: 3px 5px 3px 3px;
    border: solid var(--border);
    border-width: 3px 0 3px 3px;
    border-radius: 15px 0 0 15px;
    float: right;
    margin: 5px 0;
}

.info-text {
    text-align: justify;
    text-align-last: justify;
    margin-bottom: 50px;
}

#link-contain {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.links {
    text-align: center;
    width: 100px;
    padding: 5px 0 0 0;
    border: solid var(--border);
    border-width: 3px 3px 0 3px;
    border-radius: 15px 15px 0 0;
}

.text-container {
  width: 500px;
  height: 315px !important;
  margin: auto;
  overflow: hidden;
  background: transparent;
}

.footer-row {
  width: 500px;
  margin-right:auto;
  margin-left: auto;
}

.site-header {
  margin-left: auto;
  margin-right: auto;
}

.footer-line, #notifications-toggle, .site-header img, .edit-timestamp, .publish-timestamp, .views-count {
  display: none;
}

button, .button, .button:hover, button:hover {
  background: transparent;
}

body {
  background-color: var(--bg-color);
}

:root[data-theme="light"] {
  --bg-color: white;
  --text: black;
  --border: black;
  --sky: linear-gradient(0deg,rgba(254, 255, 235, 1) 2%, rgba(70, 173, 252, 1) 75%, rgba(13, 130, 219, 1) 100%);
}

:root[data-theme="dark"] {
  --bg-color: black;
  --text: white;
  --border: white;
  --sky: linear-gradient(0deg,rgba(48, 65, 74, 1) 10%, rgba(22, 30, 54, 1) 77%, rgba(1, 8, 36, 1) 100%);
}