* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: underline;
}

.score-board {
  text-align: end;
}

.wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}

header {
  width: 100%;
  height: 10%;
  background-color: black;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  font-family: Arial, sans-serif;
  top: 0;
}

#game-container {
  display: flex;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-height: 800px) {
  #game-container {
    background-color: antiquewhite;
    width: 100%;
    height: 100%;
  }
}

.score-board-container {
  height: 70%;
  color: black;
  font-family: Arial, sans-serif;
  text-align: center;
  z-index: 1000;
  border: 1px solid #000;
  border-radius: 10px;
  width: 20%;
  overflow: hidden;
  position: relative;
}

.my-score-board {
  width: 100%;
  background-color: black;
  color: white;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
}

.my-score-board>div {
  flex-grow: 1;
  padding: 15px 0px;
  font-size: 18px;
}

#user-name {
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.475);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  border-radius: 10px;
  transform: translateX(-50%) translateY(50%);
  transition: all 0.5s ease-in-out;
  color: black;
}

#user-name:focus {
  box-shadow: 0px 0px 10px 5px rgb(68, 68, 68);
}