:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  --text-primary: #e8e8e8;
  --text-secondary: #a0a0a0;
  --accent: #ffffff;
  --border: #333;
}

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
} */

html,
body {
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  font-size: 100%;
  letter-spacing: 0.03rem;
}

#left-column,
#right-column {
  padding: 1rem;
}

#left-column {
  background: linear-gradient(69deg, hsl(221, 14%, 14%), hsl(221, 14%, 4%));
  position: fixed;
  left: 0;
  width: 39.2vw;
  height: 100vh;
}

#right-column {
  background-color: hsl(221, 14%, 9%);
  position: absolute;
  right: 0;
  width: 60.8vw;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#heading {
  z-index: 1024;
  margin-bottom: -2rem;
}

#heading-tags .level-item {
  max-width: 100%;
  flex-shrink: 1;
}

#heading-tags .field.is-grouped {
  justify-content: center;
}

#about {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  padding-bottom: 0;
}

#social {
  padding-bottom: 2rem;
  width: calc(66% - 2rem);
  .icon {
    font-size: 1.25rem;
  }
}

section > p,
.container > p {
  text-indent: 1.25rem;
}

.level,
.level-left,
.level-right {
  margin: 3rem 2rem -2rem 2rem;
  padding: 0;
}

.field {
  margin-bottom: 1rem;
}

.profile-image {
  /* padding: 1rem; */
  transform: scale(.8);
  transition: all 0.2s ease-out;
  &:hover {
    transform: scale(.9);
    transition: all 0.2s ease-out;
  }
}

.prompt {
  font-size: 21px;
  animation: prompt-anim 1.5s infinite;
  animation-timing-function: ease-out;
}

@keyframes prompt-anim {
 0% {
  opacity: 1;
 }
 50% {
  opacity: 0;
 }
 100% {
  opacity: 1;
 }
}

.title.is-5 {
  margin-bottom: 1rem;
}

.mono-font {
  font-family: Hack, "Source Code Pro", "Fira Code", "Roboto Mono", monospace;
}

.tag {
  font-family: "JetBrains Mono", monospace;
}

.tag-icon {
  font-size: 18px;
  height: 1.5rem;
  width: 32px;
}

.p-justify {
  text-align: justify;
}

.button {
  font-weight: 500;
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.2s ease-out;
  .icon,
  .text {
    transition: color 0.2s ease-out;
  }
  &:hover {
    background: hsl(221, 14%, 14%);
  }
}

.btn-icon {
  font-size: 22px;
}

.btn-steam:hover {
  color: #66c0f4;
}

.btn-itch:hover {
  color: #ff5a5a;
}

.btn-googleplay:hover {
  color: #3aab58;
}

.btn-twitter:hover {
  color: #249ef0;
}

.btn-bluesky:hover {
  color: #1889fe;
}

.btn-github:hover {
  color: black;
  background-color: white;
}

.btn-coffee:hover {
  color: #ffde08;
}

.btn-patreon:hover {
  color: #ff5e08;
}

.card {
  --bulma-card-shadow: none;
  border: 1px solid hsl(221, 14%, 21%);
  .icon {
    font-size: 1.5rem;
  }
}

.card-header {
  background-color: hsl(221, 14%, 21%);
  border-bottom: 1px solid hsl(221, 14%, 21%);
}

.card-header-icon .icon {
  transition: color 0.2s ease-out;
  &:hover {
    color: hsl(221, 14%, 100%);
  }
}

.message .icon {
  font-size: 1.5rem;
}


.card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.column {
  perspective: 50000px;
}

.card {
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.9);
}

@media (max-width: 1024px) {
  #left-column {
    position: relative;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  #right-column {
    position: relative;
    width: 100%;
  }

  #projects-grid {
    grid-template-columns: 1fr;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
