body {
  background-color: #2f2f2f;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  border: 2px solid white;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
  background-color:#6441a5;
}

.button:hover {
  background-color: #444;
}

.profile {
  margin: 20px;
}

.profile img {
  border-radius: 50%;
}

.info-box {
  margin-top: 30px;
  padding: 15px;
  border: 1px solid white;
  border-radius: 8px;
  background-color: #6441a5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.navbar {
  width: 100%;
  background-color: #18181b; /* Twitch dark grey */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left img {
  height: 30px;
}

.nav-left a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.nav-left a:hover {
  text-decoration: underline;
}

.nav-right .button {
  margin: 0; /* remove extra margin so it aligns neatly */
  padding: 8px 16px;
}

body {
  margin: 0;
  padding-top: 60px; /* push content below navbar */
}
