/* SUMMER CODE +D THIS GRRRRR 
* (we spent 2 full days and sleepless nights fixing the i fucking hate this) */
:root {
  --code-color: #ed3633;
  --code-bg-color: #202324;
  --default-text-color: white;
}

body {
  background-color: black;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  color: var(--default-text-color);
  font-family: "Inter", sans-serif;
  font-weight: medium;
}
a {
  color: var(--default-text-color);
}

code {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  max-width: 100%;
  background: var(--code-bg-color);
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--code-color);
  margin-top: 1px;
  margin-bottom: 1px;
}

.img-center {
  display: block;
  margin: auto;
  justify-self: center;
  justify-content: center;
  align-self: center;
  align-content: center;

  -webkit-justify-content: center;
  -webkit-align-content: center;
}

.center {
  text-align: center;
}
.blogcontainer {
  padding: 10px;
  overflow-wrap: break-word;
}
.box {
  margin: auto;
  border: 3px solid white;
  padding: 10px;
  border-radius: 15px;
  overflow-wrap: break-word;
}

h1,
.big-hi {
  font-weight: bold;
  font-style: normal;
}

#list {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: max-content;

  -webkit-flex-direction: column;
}

img, video {
  max-width: 40vw;
  max-height: 50vh;
}

pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: "JetBrains Mono", monospace;
  background: var(--code-bg-color);
}

@media screen and (max-width: 768px) {
  img, video {
    max-width: 90vw;
    max-height: 60vh;
    width: auto;
    height: auto;
  }
}
img.emoji {
  height: 1em;
  width: 1em;
  margin: 0 .05em 0 .1em;
  vertical-align: -0.1em;
}
.buttons {
  text-align: right;
  float: right;
}