body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0f0f14;
    color: #e4e4e7;
    line-height: 1.6;
}

.img {
    width:25vw;
    max-width:600px;
    height:auto;
    display:block;
    margin:0 auto 20px auto;
}
.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #18181f;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

h2 {
    margin-top: 30px;
    font-size: 1.4rem;
    color: #a78bfa;
}

p {
    margin: 12px 0;
    font-size: 1rem;
}

nav {
  background: #121217;
  padding: 1rem 0.42rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid #222;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

nav a {
  color: #c4c4c4;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
}


nav a:hover {
  color: #ffffff;
}