@import url("https://use.typekit.net/zte3plw.css");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.5;
  scroll-behavior: smooth;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

:root {
  --q-hand: 520px;
  --q-hands: 824px;
  --q-lap: 1080px;
  --q-desk: 1440px;
}

body {
  --orange: #e2552c;
  --blue: #2c72e2;
  --other-blue: #5083d5;
  --site-pad: 24px;
}
@media (max-width: 824px) {
  body {
    --site-pad: 16px;
  }
}

body {
  padding: var(--site-pad);
  position: relative;
  isolation: isolate;
  background: var(--orange);
  font-family: "marvin-round", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body *,
body *::before,
body *::after {
  transition: 125ms ease;
}

.sammiches {
  display: grid;
  gap: var(--site-pad);
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 824px) {
  .sammiches {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.sammich {
  overflow: clip;
  isolation: isolate;
  position: relative;
  box-shadow: 5px 7px rgba(0, 0, 0, 0.125);
}
.sammich img, .sammich video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.sammich::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 0;
  border: 3px solid white;
  mix-blend-mode: overlay;
}
.sammich img {
  scale: 1.1;
  animation: wiggle 500ms linear alternate-reverse infinite;
}
.sammich:hover {
  rotate: 1deg;
}
.sammich:hover::after {
  border-width: 6px;
}

#copyCa {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  background: white;
  border-radius: 9px 12px 13px 8px;
  cursor: pointer;
  padding: 4px;
  font-size: clamp(13px, 2.5vw, 1.125rem);
  position: fixed;
  bottom: 16px;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 5px 7px rgba(0, 0, 0, 0.125);
  border: 3px solid black;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 824px) {
  #copyCa {
    flex-direction: column;
    gap: 4px;
    width: calc(100% - 24px);
  }
}

#ca {
  align-self: center;
  text-align: center;
  word-break: break-all;
  padding: 4px var(--site-pad) 8px;
  /* filter: blur(4px); */
}

#dummyButton {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  background: var(--other-blue);
  border-radius: 9px 12px 13px 8px;
  line-height: 1;
  padding: 12px 24px 16px;
  color: white;
  position: relative;
  border: 3px solid black;
}
#dummyButton::before, #dummyButton::after {
  content: "";
  position: absolute;
  inset: 0;
}
#dummyButton::before {
  bottom: auto;
  height: 50%;
  background: white;
  opacity: 0.1;
}
#dummyButton::after {
  background-image: linear-gradient(to bottom, white, black);
  mix-blend-mode: overlay;
  opacity: 0.25;
}
#dummyButton:hover {
  scale: 1.025;
  background: var(--blue);
}

#head {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  padding: 64px 24px;
  filter: drop-shadow(3px 5px 2px rgba(0, 0, 0, 0.125));
}
#head > * {
  max-width: min(400px, 100%);
}

#mascot {
  max-width: min(400px, 100%);
  flex: 2;
  animation: wiggle 500ms linear alternate-reverse infinite;
}

@keyframes wiggle {
  to {
    rotate: 2deg;
  }
}
#logo {
  flex: 1;
}

#social {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--site-pad);
  justify-content: center;
  margin-inline: auto;
  width: 100%;
  position: sticky;
  top: var(--site-pad);
  z-index: 4;
}
#social a {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: center;
  height: 64px;
  background: var(--other-blue);
  border-radius: 9px 12px 13px 8px;
  padding-inline: 24px;
  padding-bottom: 6px;
  border: 3px solid black;
  line-height: 1;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 5px 7px rgba(0, 0, 0, 0.125);
  position: relative;
  flex: 1;
  min-width: 240px;
}
#social a::before, #social a::after {
  content: "";
  position: absolute;
  inset: 0;
}
#social a::before {
  bottom: auto;
  height: 50%;
  background: white;
  opacity: 0.1;
}
#social a::after {
  background-image: linear-gradient(to bottom, white, black);
  mix-blend-mode: overlay;
  opacity: 0.25;
}
#social a img {
  margin-bottom: -6px;
  rotate: -2deg;
}
#social a:hover {
  scale: 1.0125;
  background: var(--blue);
}
#social a:hover img {
  scale: 1.25;
  rotate: 0;
}

#intro {
  margin: 0 auto 64px;
  text-align: center;
  width: min(1280px, 100%);
  color: white;
}

h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-wrap: balance;
  line-height: 1.25;
}