body {
      margin: 0;
      background-color: black;
      color: white;
      text-align: center;
      font-family: Arial, sans-serif;
    }

header {
    text-align: center;
    padding: 20px 0;
    background-color: #633393;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    color: white;
    letter-spacing: 5px;
    text-transform: uppercase;
}

nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: gray;
}
