* {
    padding: 0;
    margin: 0;
}

.portfolio { 
    --color: #ca6f97;
}
.github {
  --color: black;
}
.twitter {
  --color: #1da1f2;
}
.mastodon {
  --color: #6364ff;
}
.discord {
  --color: #7289da;
}

.button.popout {
  box-shadow: 0px 0px var(--color, #000);
  transform: translate(0px, 0px);
  transition: box-shadow 0.15s, transform 0.15s;
}

.button.popout:hover {
  box-shadow: 10px 10px var(--color, #000);
  transform: translate(-10px, -10px);
}

.button {
  border-radius: 10px;
  display: block;
  font-family: "Syne Mono", monospace;
  padding: 10px;
  background: #fff;
  border: 2px solid var(--color, #000);
  margin: 10px;
  text-transform: capitalize;
  text-transform: lowercase;
  color: var(--color, #000);
  font-size: 15pt;
  text-decoration: none;
}

.frame {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

img {
  width: 50%;
  max-height: 100%;
  object-fit: scale-down;
}

@media screen and (max-width: 500px) {
  img { display: none; }
}

.domain {
    text-decoration: underline wavy;
}

.graph-paper {
    background: white;
    background-position: 10px 25px;
    background-size: 60px 60px;
    background-image:
        linear-gradient(to right, #e2e2e2  2px, transparent 2px),
        linear-gradient(to bottom, #e2e2e2  2px, transparent 2px);
}
.graph-paper.slide {
    animation: graph-slide ease-in-out alternate 100s infinite
}
@keyframes graph-slide {
    0% { background-position: 10px 10px; }
    100% { background-position: 300px  250px }
}