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

body {
  background-color: black;
  color: white;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
}

#navbar ul {
  list-style: none;
}

#navbar ul li:hover {
  border-bottom: 1px solid hotpink;
  padding: 3px;
}

#navbar h3:hover {
  color: hotpink;
}
a{
  text-decoration: none;
  color:white;
}
hr.horizontal-line {
  border: none;
  height: 1px;
  background-color: hotpink;
}
#content{
  display: flex;
  flex-grow:1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0 70px 0;
  background-color: whitesmoke;
  color: black;
}
.game{
  display:flex;
  align-items: center;
  justify-content: space-between;
  flex-basis: 60%;
}
.player{
  margin-right: 10px;
}
img {
  width: 100%;
}
button{
  all:unset;
  width: 35%;
  cursor: pointer;
}
.crock, .cpaper, .cscissor {
  all: unset;
  width: 35%;
}
.rock, .paper, .scissor{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1{
  text-align: center;
  padding: 20px 30px 20px 20px;
  font-weight: 900;
}
.verticleline{
  width: 1px;
  outline: 2px solid black;
  height: 475px;
  margin: 25px 0 75px 0;
}
.score h2 {
  text-align: center;
  padding: 20px 30px 20px 20px;
  font-weight: 900;
}
.hscore, .cscore{
  text-align: center;
  padding: 12px;
  font-size: 32px;
  font-weight: 700;
  color: hotpink;
}
#footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.foottxt{
  padding-bottom: 4px;
}
.computer-button-highlight {
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3), 0 2px 6px rgba(255, 105, 180, 0.5);
}
