* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #1d1d1f;
  color: #fafafa;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: transparent;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
  padding: 1rem;
  width: 100%;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: #fafafa;
  text-decoration: none;
}

nav ul li a:hover {
  color: #bbbbbb;
}

section {
  padding: 5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1,
h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
}

a {
  color: #fafafa;
}

a:hover {
  color: #bbbbbb;
}
