* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
  overflow-x: hidden;
}
canvas#bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
}
section {
  padding: 100px 10%;
  text-align: center;
}
.hero h1.name {
  font-size: 4rem;
  letter-spacing: 4px;
  color: #00eaff;
}
.title {
  margin-top: 10px;
  font-size: 1.5rem;
  color: #ccc;
}
.skills ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 30px;
}
.skills li {
  background: #222;
  padding: 10px 20px;
  border-radius: 5px;
}
.projects .swiper {
  width: 80%;
  margin: auto;
}
.swiper-slide {
  background: #222;
  padding: 20px;
  border-radius: 8px;
}
.swiper-slide img {
  width: 100%;
  border-radius: 8px;
}
.contact a {
  color: #00eaff;
  text-decoration: none;
}
