@media (prefers-color-scheme:light) {
  :root {
    --backgroundcolor: #f5f5f7;
    --secondarycolor: #ffffff;
    --textcolor: #000000;
    --textcolor2: #ffffff;
    --hovercolor: #f2f2f4;
  }
  button.postBottomButton {
    box-shadow: 0 0 1em #93939380;
  }
}
@media (prefers-color-scheme:dark) {
  :root {
    --backgroundcolor: #000000;
    --secondarycolor: #27272b;
    --textcolor: #ffffff;
    --textcolor2: #000000;
    --hovercolor: #454545;
  }
  button.postBottomButton {
    box-shadow: none;
  }
}
@media (orientation:landscape) {
  :root {
    --smallfont: 1rem;
    --contentfont: 1.25rem;
    --buttontext: 1.5rem;
  }
  .postMain {
    border: 1px solid #959595;
  }
}
@media (orientation:portrait) {
  :root {
    --smallfont: 0.75rem;
    --contentfont: 1rem;
    --buttontext: 1.25rem;
  }
}
p {
  margin: 0;
}
button.postBottomButton {
  color: var(--textcolor);
  background: var(--secondarycolor);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, Helvetica, Arial, sans-serif;
  font-size: var(--buttontext);
  font-weight: 600;
  width: fit-content;
  padding: 0.5em 1em;
  border: none;
  border-radius: 500px;
}
button.postBottomButton:hover {
  color: var(--textcolor);
  background: var(--hovercolor);
}
#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: 9/16;
  max-width: 540px;
  max-height: 960px;
  background-color: #959595;
  background-position: center;
  background-size: 100% 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, Helvetica, Arial, sans-serif;
}
#contact {
  display: flex;
  color: #ffffff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20%;
}
#phoneButtons {
  display: grid;
  color: #ffffff;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5% 20%;
  margin-bottom: 15%;
  font-size: var(--smallfont);
}
#phoneButtons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
#name {
  font-size: 3em;
  font-weight: 400;
  text-shadow: 0 0 1em #00000080;
}
#label {
  opacity: 0.65;
  font-size: 1.25em;
}
.circleButton {
  width: 12vw;
  height: 12vw;
  max-width: 4rem;
  max-height: 4rem;
  border-radius: 2rem;
  background-color: #70707080;
  backdrop-filter: blur(0.5rem);
}
.circleButton svg {
  width: 40%;
  height: 40%;
}
#decline .circleButton {
  width: 17vw;
  height: 17vw;
  max-width: 6rem;
  max-height: 6rem;
  border-radius: 3rem;
  background-color: #fe4536;
}
#decline .circleButton svg {
  width: 50%;
  height: 50%;
}
#accept .circleButton {
  width: 17vw;
  height: 17vw;
  max-width: 6rem;
  max-height: 6rem;
  border-radius: 3rem;
  background-color: #2dd157;
}
#accept .circleButton svg {
  width: 40%;
  height: 40%;
}
#voicemail .circleButton svg {
  width: 65%;
  height: 65%;
}

input {
  display: none;
}
.orangeText {
  color: var(--orangecolor);
}
.copyright {
  margin: 0.5rem;
}
#postResult {
  display: none;
}
#postResult p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, Helvetica, Arial, sans-serif;
  font-size: var(--contentfont);
  margin: 1em;
}
#resultImage {
  width: calc(100vw - 2rem);
  max-width: 600px;
  border: 1px dashed #959595;
}