/* General Styles */
html,
body {
  height: 100%;
  width: 100%;
  background-color: #191919;
  color: white;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.5s ease, color 0.5s ease;
  user-select: none;
  overflow: hidden;
}

header {
  width: 100%;
  height: 100px;
  padding: 10px 0;
  background-color: #323232;
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.header-divider {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  position: fixed;
  top: 100px;
  z-index: 9;
}

.link {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.Canvas {
  z-index: 0;
  background-color: black;
  align-self: center;
  user-select: none;
}

.container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease, color 0.5s ease;
}

main {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main .content {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.5s ease, color 0.5s ease;
}



/* Common & Simple Styles */
.orbitron {
  font-family: 'Orbitron', sans-serif;
}

.press-start {
  font-family: 'Press Start 2P', cursive;
}

.hidden {
  display: none;
}

.center {
  align-self: center;
  text-align: center;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  position: relative;
}

.scrollable {
  overflow-y: auto;
}



/* Your Code Goes Here */