body {
  height: 100vh;
  margin: 2rem 0;
  overflow: hidden;
  color: #294C60;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1rem;
  position: relative;
}

.octopus {
  width: 100px;
}

.pop-title {
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 1rem;
  font-family: poppins;
  font-size: 20px;
  text-shadow: 2px 2px 4px #333;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.unloaded-player-bg {
  background: rgba(0, 0, 0, 0.5);
  min-height: 640px;
  min-width: 480px
}

#pop-id-input {
  padding: 0.8rem;
  border: none;
  border-radius: 0.2rem;
  border-bottom: 1px solid #333;
}

#pop-id-input:focus {
  outline: none;
  border: 2px solid #ACBED8;
}

button {
  padding: 0.8rem;
  color: white;
  background: #ACBED8;
  border-radius: 0.2rem;
  border: none;
}


button:hover {
  background: #294C60;
  color: white;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 100%;
  margin: 1.5rem;
  text-align: center;
}
