<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=VT323&amp;display=swap");

body {
  background: "blue";
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "VT323", monospace;
}

.menu {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#p1 {
  width: 100px;
  height: 100px;
}

.p1Info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 300px;
  /*   background: red; */
}

#p1Name {
  font-size: 30px;
}

#p1Health {
  font-size: 50px;
}

#p2 {
  width: 100px;
  height: 100px;
}

.p2Info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 300px;
  /*   background: red; */
}

#p2Name {
  font-size: 30px;
}

#p2Health {
  font-size: 50px;
}

.playerControls {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.AttackDiv {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 40px;
  width: 100px;
  /*   background: blue; */
}

.HealDiv {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 40px;
  width: 100px;
  /*   background: yellow; */
}

#attack {
  height: 30px;
  width: 60px;
  border-radius: 50px;
  border: none;
  background: #ec0c0c;
  outline: none;
  cursor: pointer;
}

#heal {
  height: 30px;
  width: 60px;
  border-radius: 50px;
  border: none;
  background: #10e610;
  outline: none;
  cursor: pointer;
  margin-top: 20px;
}

#play {
  height: 50px;
  width: 120px;
  border-radius: 20px;
  /*   border:none; */
  background: yellowgreen;
  outline: none;
  color: white;
  cursor: pointer;
}

#result {
  font-size: 50px;
  color: #3dff3d;
}

#reset {
  margin-top: 20px;
  height: 50px;
  width: 100px;
  border-radius: 50px;
  border: none;
  background: #1043ec;
  outline: none;
  color: white;
  cursor: pointer;
}

.resultContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 150px;
  width: 300px;
}
#p2,
#p1 {
  border-radius: 50px;
  padding-bottom: 20px;
}
</pre></body></html>