* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

body {
  background: linear-gradient(135deg, #090909, #000);
  color: white;
  overflow-x: hidden;
}

/* glow */
.background-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  filter: blur(160px);
  top: -200px;
  right: -150px;
  z-index: -1;
}

/* navbar */
.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

nav a {
  color: #aaa;
  margin-right: 20px;
  text-decoration: none;
}

nav a:hover {
  color: white;
}

.hire-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: white;
  color: black;
  cursor: pointer;
  font-weight: bold;
}

/* hero */
.hero {
  text-align: center;
  padding: 50px 20px 10px;
}

.hero-title {
  font-size: 60px;
  font-weight: 900;
}

.hero-title span {
  background: linear-gradient(to right, white, #777);
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: #aaa;
  font-size: 18px;
  margin-top: 10px;
}

/* canvas */
canvas {
  display: block;
  margin: 30px auto 60px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #050505;
}