* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family:myFont;
  src: url('Squares Bold Free.otf');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: 'myFont', sans-serif;;
  background: #0e0e13;
  color: #fff;
  /* scroll-behavior: smooth; */
  overflow: hidden;


  
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.075);
  z-index: 10;
}

.nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: #00ffe0;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #fff;
}

.container {
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  overflow-x:hidden;
  scroll-snap-type: y proximity;
}

.snap-section {
  scroll-snap-align: start;
  height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* overflow: hidden; */
  scroll-behavior: smooth;
}

.snap-section h1, .snap-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.snap-section span {
  color: #00ffe0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.skills-list span {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}

input, textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
}

button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #00ffe0;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #00cbbd;
}
