@import "variables.css";
@import "base.css";
@import "layout.css";
@import "components.css";

body {
  background:black;
  color:white;
  font-family: 'Helvetica', sans-serif;
}

nav {
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--space-m);
}
  
nav a {
  text-decoration: none;
  color: white;
}

.nav-heading {
  font-size: 2em;
  font-family: var(--h1-font);
  opacity:0.6;
  color: black;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  display: flex;
  justify-self: center;
  letter-spacing: 0.05em;
}

.nav-left {
  justify-self: start;
  display: flex;
  gap: var(--space-m);
}

.nav-right {
  display: flex;
  justify-self: end;
  gap: var(--space-m);
}

/* JUMP TITLE + Glow Effect*/

.jump-title {
  display:inline-block;
  text-shadow: 0 0 10px white;
  font-family: var(--h1-font);
  font-size: 6rem;
  animation: glow 2s infinite alternate;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #715086;
  letter-spacing: 0.05em;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #e4c1ff, 0 0 20px #e9c9ff, 0 0 30px #e8beff, 0 0 40px #6f00e6, 0 0 50px #8200e676, 0 0 60px #8200e67e, 0 0 70px #8200e6, 0 0 80px #8200e680;
  }
  
  to {
    text-shadow: 0 0 20px #f0e5f8, 0 0 30px #dcc7f8, 0 0 40px #a18efc, 0 0 50px #824dff, 0 0 60px #824dff, 0 0 70px #824dff53, 0 0 80px #824dff92;
  }
}

.jump-title span {
    display:inline-block;
    transition: transform;
    transition: transform 0.4s ease;
}

.project-meta {
  opacity:0.6;
}

.project-image {
  max-width:100%;
}

/* TEXT */

.bio-text {
  max-width: 600px;
  margin: 1px;
  padding-top: 40px;
  font-size: var(--font-medium);
  line-height: 3;
  text-align: left;
  text-shadow: #a18efc 0px 0px 10px, #824dff 0px 0px 15px;
  cursor: pointer;
}

.bio-text span {
  display: inline-block;
  transition: transform 0.4s ease;
}
