@font-face {
    font-family: "Dead Stock";
    src: url("/font/rap/Dead-Stock.ttf");
}
@font-face {
    font-family: "Integral CF";
    src: url("/font/rap/IntegralCF-DemiBold.woff");
    font-weight: normal;
}
@font-face {
    font-family: "Integral CF";
    src: url("/font/rap/IntegralCF-ExtraBold.woff");
    font-weight: 900;
}
:root {
  --backgroundcolor: #000000;
  --secondarycolor: #ffffff;
  --textcolor: #ffffff;
  --textcolor2: #000000;
  --orangecolor: #fe6001;
}
@media (orientation:landscape) {
  :root {
    --smallfont: 1rem;
    --contentfont: 1.25rem;
    --fakebuttonsize: 24px;
    --buttontext: 1.25rem;
    --tagbig: 1.25rem;
    --tagsmall: 0.75rem;
    --headline: 2rem;
    --circleSize: 15em;
  }
  .postMain {
    border: 1px solid #959595;
  }
}
@media (orientation:portrait) {
  :root {
    --smallfont: 0.75rem;
    --contentfont: 1rem;
    --fakebuttonsize: 20px;
    --buttontext: 1rem;
    --tagbig: 1rem;
    --tagsmall: 0.5rem;
    --headline: 1.5rem;
    --circleSize: 10em;
  }
}
p {
  margin: 0;
}
button.postBottomButton {
  color: var(--textcolor2);
  background: var(--secondarycolor);
  font-family: "Integral CF", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: var(--buttontext);
  text-transform: uppercase;
  width: fit-content;
  padding: 0.25em 1em 0.5em 1em;
  border: 2px solid var(--secondarycolor);
  border-radius: 0;
}
button.postBottomButton:hover {
  color: var(--textcolor);
  background: var(--backgroundcolor);
}
#orangeButton {
  background: var(--orangecolor);
  border: 2px solid var(--orangecolor);
}
#orangeButton:hover {
  color: var(--orangecolor);
  background: var(--backgroundcolor);
}
#main {
  display: flex;
  flex-direction: column;
  min-height: 75vh;
  justify-content: space-between;
  gap: 2em;
}
.postMain {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100vw - 3rem);
  aspect-ratio: 1/1.25;
  max-width: 600px;
  max-height: 750px;
  padding: 1rem 1rem 1rem 2rem;
  background-color: #959595;
  background-position: center;
  background-size: cover;
}
#postText {
  position: relative;
  z-index: 100;
}
#bottomFade {
  position: absolute;
  bottom: 0px;
  left: 0;
  background: linear-gradient(#00000000, #000000 75%);
  width: 100%;
  height: 40%;
  z-index: 1;
  pointer-events: none;
}

#swipeLeft {
  position: relative;
  font-family: "Integral CF", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: var(--smallfont);
  z-index: 100;
}
#news {
  font-family: "Integral CF", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: var(--smallfont);
  color: var(--textcolor2);
  background: var(--secondarycolor);
  width: fit-content;
  padding: 0.1em 0.75em 0.45em 0.75em;
  margin-bottom: 1em;
}
#headline {
  font-family: "Integral CF", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: bold;
  font-size: var(--headline);
}
#deck {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: var(--smallfont);
  margin: 1em 0;
}
#tag {
  position: relative;
  font-family: "Dead Stock";
  font-size: var(--tagbig);
}
#tagSmall {
  font-size: var(--tagsmall);
  position: relative;
  bottom: -2px;
  left: -2px;
}
div.line {
  position: relative;
  left: 1em;
  width: 100%;
  height: 2px;
  background-color: var(--secondarycolor);
}

input {
  display: none;
}
.orangeText {
  color: var(--orangecolor);
}
.copyright {
  margin: 0.5rem;
}
#postResult {
  display: none;
}
#postResult p {
  font-family: "Integral CF", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: var(--contentfont);
  margin: 1em;
}
#resultImage {
  width: calc(100vw - 2rem);
  max-width: 600px;
  border: 1px dashed #959595;
}
#bounds {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 120px;
  left: 0;
}
#circle {
  display: none;
  position: absolute;
  z-index: 0;
  /* overflow: hidden; */
  width: var(--circleSize);
  height: var(--circleSize);
  background: var(--secondarycolor);
  border: 2px solid var(--orangecolor);
  border-radius: var(--circleSize);
  box-shadow: 0 0 4px var(--orangecolor);
}
#circleImage {
  position: relative;
  z-index: 10;
  width: inherit;
  height: inherit;
  object-fit: fill;
  object-position: center;
  border-radius: inherit;
}