html,
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  overflow: hidden;
  background-color: black;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links {
  padding: 5px;
  width: 560px;
}

#pacman-banner {
  font-family: Arial;
  font-weight: bold;
  font-size: 21pt;
  margin-right: 100px;
  color: yellow;
  float: left;
}

.social-buttons {
  float: right;
  position: relative;
  top: 5px;
}

.game-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

canvas {
  max-width: 100%;
  height: auto;
}

#controls {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}

.middle-row {
  display: flex;
  gap: 10px;
}

.ctrl-btn {
  background-color: rgba(255, 255, 0, 0.6);
  border: none;
  border-radius: 8px;
  padding: 15px;
  margin: 5px;
  font-size: 20px;
  cursor: pointer;
}

.ctrl-btn:active {
  background-color: rgba(255, 255, 0, 1);
}

@media (max-width: 600px) {
  .ctrl-btn {
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .ctrl-btn {
    padding: 8px;
    font-size: 14px;
  }
}