@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
/*
Used https://github.com/markdowncss for the base styles
 */
:root {
  --primary-100:#d4eaf7;
  --primary-200:#b6ccd8;
  --primary-300:#3b3c3d;
  --accent-100:#71c4ef;
  --accent-200:#00668c;
  --text-100:#1d1c1c;
  --text-200:#313d44;
  --bg-100:#fffefb;
  --bg-200:#f5f4f1;
  --bg-300:#cccbc8;
  --lineheight: 1.625;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

img {
  border-style: none;
}

pre {
  font-family: monospace;
  font-size: 1rem;
  padding: 1rem;
  /*padding: 2rem 1rem 1rem 1rem;*/
  color: var(--text-200);
  background-color: var(--bg-200);
}

p code {
  background-color: var(--bg-200,#edf2f7);
  color: var(--text-100,#2d3748);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: 2px;
}

p {
  font-size: 1.25rem;
  line-height: var(--lineheight);
  letter-spacing: -0.003em;
  --baseline-multiplier: 0.179;
  --x-height-multiplier: 0.35;
  word-break: break-word;
}

ul li,
ol li {
  font-size: 1.25rem;
  letter-spacing: -0.003em;
  --baseline-multiplier: 0.179;
  --x-height-multiplier: 0.35;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-200);
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  margin-top: 4rem;
}

h3 {
  font-size: 1.25rem;
  margin-top: 4rem;
}

h4 {
  font-size: 1rem;
  margin-top: 3rem;
}

h5 {
  font-size: 1rem;
  margin-top: 3rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 2rem;
}

blockquote {
  border-left-color: var(--accent-200);
  border-left-style: solid;
  border-left-width: 0.25rem;
  margin-left: 1rem;
  padding-left: 0.25rem;
}

blockquote p {
  font-style: italic;
}

table {
  width: 100%;
  margin-top: 4rem;
  border-collapse: separate;
  border-spacing: 0;
}

table th,
table td {
  text-align: left;
  padding: 0.25rem;
  padding-right: 0.25rem;
  padding-left: 0;
  border-color: var(--muted);
  border-bottom-style: solid;
}

th {
  vertical-align: bottom;
  border-bottom-width: 2px;
  color: var(--heading);
}

td {
  vertical-align: top;
  border-bottom-width: 1px;
}

hr {
  margin-left: 0;
}

figure img, img {
  border-radius: 0.25rem;
  box-shadow: 0 0.25rem 16px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

html, body {
  height: 100%;
  max-width: 100%;
}

body {
  font-family: 'Merriweather', Georgia, serif;
  padding: 0;
  margin: 0;
}

p, span {
  color: var(--text-100)
}

a, a:visited {
  transition: all 0.3s ease-in-out;
  color: var(--accent-200);
  text-decoration: underline;
}

header {
  border-bottom: 1px solid var(--bg-300);
  justify-content: space-between;
  color: var(--text-200);
  align-items: center;
  margin: 0 auto;
  flex-shrink: 0;
  display: flex;
  width: 65%;
}

header h1 {
  font-weight: 900;
}

header h1:after {
  content: " VIdeas";
  font-size: 1rem;
  color: var(--accent-200);
  vertical-align: top;
  margin-left: -10px;
}

header .header__left a {
  color: var(--text-200);
  text-decoration: none;
}

header .header__right {
  display: flex;
  gap: 20px;
}

header .header__right a {
  font-size: 1.5rem;
  font-weight: 700;
}
header sub {
}

main {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
}

footer {
  background-color: var(--bg-300);
  justify-content: center;
  color: var(--text-200);
  padding: 10px 20px;
  align-items: center;
  flex-shrink: 0;
  display: flex;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.content-center {
  justify-content: center;
}

.justified {
  text-align: justify;
}

.index-container {
  margin: 10px auto;
  width: 65%;
  gap: 20px;
}

.index-container__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.index-container__left div:first-child {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  clip-path: fill-box;
}


.index-container__left div:first-child img {
  height: 100%;
  width: 100%;
  background-size: cover;
  object-fit: fill;
}

.index-container__left p {
}

.index-container__right {
  flex-grow: 1;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 80vh;
}

.post-container__content {
  box-shadow: 0px 1px 0.25rem 0px rgba(0, 0, 0, .1);
  background-color: var(--bg-100);
  color: var(--text-200);
  border-radius: 5px;
  position: relative;
  margin: 50px 25px;
  padding: 10px 50px;
  width: 60%;
}

.post-container__content img {
  width: 100%;
  margin: 5px;
}

.post-container__content__time-estimate {
  background-color: var(--text-200);
  color: var(--bg-100);
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
  border-bottom-left-radius: 10px;
}

.post-card {
  box-shadow: 0px 1px 0.25rem 0px rgba(0, 0, 0, .1);
  justify-content: space-between;
  background-color: #0088ff3d;
  flex-direction: row;
  align-items: stretch;
  border-radius: 10px;
  user-select: none;
  min-height: 80px;
  padding: 1px 20px;
  margin: 10px 5px;
  cursor: pointer;
  display: flex;
  width: 90%;
}

.post-card:hover {
  transition: 400ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transform: scale(1.01);
  opacity: 0.9;
}

.post-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.post-card__date {
  padding: 5px 10px;
  margin: 5px 10px;
}
