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

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

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

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

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;
}

.hidden {
  display: none;
}

.center {
  align-self: center;
  text-align: center;
  align-items: center;
  vertical-align: middle;
}

/* Canvas and Settings Styles */
canvas {
  display: block;
  width: 100%;
  height: calc(100vh - 70px);
  top: 70px;
  margin-bottom: 20px;
  background-color: black;
  cursor: default;
  position: fixed;
  touch-action: none;
  -ms-touch-action: none;
}

canvas:hover {
  cursor: default;
}

.stuffLabel {
  top: 70px;
  position: fixed;
  user-select: none;
}

.stuff {
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 80px;
  right: 5px;
  position: fixed;
  width: 20%;
}

.content .row {
  display: flex;
  flex-wrap: wrap;
}

.content .col {
  padding: 10px;
}

.settings {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.settings label,
.settings input {
  margin: 5px 0;
  width: 100%;
}

@media (max-width: 600px) {
  .content .col {
    width: 100%;
  }

  .stuff {
    width: 10%;
    font-size: 0.8em;
    /* Adjust the font size as needed */
    height: auto;
    /* Let the height adjust automatically */
    padding: 5px;
    /* Add padding if needed */
  }
}

.switch {
  margin-top: 20px;
}

.switch label {
  font-size: 14px;
}

.switch label input[type=checkbox]:checked+.lever {
  background-color: #84c7c1;
}

.switch label input[type=checkbox]:checked+.lever:after {
  background-color: #26a69a;
}

.settings label,
.settings input {
  margin: 5px 0;
}