html {
  box-sizing: border-box
}

/* The Universal Selector */
*, /* All elements*/
*::before, /* All ::before pseudo-elements */
*::after { /* All ::after pseudo-elements */
  /* height & width will now include border & padding by default
     but can be over-ridden as needed */
  box-sizing: inherit;
}

/* resets font size to be 62.5% of the user preference - 
     in most browser configurations this will be 10px */
:root {
  font-size: 62.5%;
}

body {
  /* Use a system font, if none are available use an available sans-sarif font */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #9b3535;
  min-height: 100vh;
  font-size: 18px;
  font-family: sans-serif;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin: 0;
}

#message {
  -webkit-box-shadow: 4px -4px 15px 0px #FF1F1F, 12px -11px 7px 0px #FF9376, 20px -5px 7px 0px #FFE264, 20px 6px 7px 0px #F6FF33, 13px 12px 17px 0px #FF9527, 2px 17px 17px 0px #FF0000, -9px 21px 18px 0px #FFF212, -9px 6px 11px 0px #FF0808, -11px -9px 11px 0px #FFFA17, -11px -9px 11px 0px #FFFA17, 5px 5px 15px 5px rgba(0,0,0,0); 
  box-shadow: 4px -4px 15px 0px #FF1F1F, 12px -11px 7px 0px #FF9376, 20px -5px 7px 0px #FFE264, 20px 6px 7px 0px #F6FF33, 13px 12px 17px 0px #FF9527, 2px 17px 17px 0px #FF0000, -9px 21px 18px 0px #FFF212, -9px 6px 11px 0px #FF0808, -11px -9px 11px 0px #FFFA17, -11px -9px 11px 0px #FFFA17, 5px 5px 15px 5px rgba(0,0,0,0);
  border-radius: 10px;
  width: 500px;
  text-align: center;
  }

div {
  padding: 5px;
}

button:hover {
  background-color: #bebdc9;
}

button{

  width: 60px;
  height: 60px;
  font-size: large;
}

h2{
  width: 200px;
  text-align: center;
  border-radius: 47px;
  background: #a24444;
  box-shadow:  28px 28px 55px #682c2c,
               -28px -28px 55px #dc5c5c;
}

h3{
  width: 140px;
  text-align: center;
  text-align: center;
  border-radius: 10px;
  background: #a24444;
  box-shadow:  28px 28px 55px #682c2c,
               -28px -28px 55px #dc5c5c;
}

#choices {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pick{
  padding: 0;
}

.category-container, .score-container {
  display: flex;
  justify-content: space-between; /* Keep categories and scores evenly spaced */
  text-align: center;
  margin-bottom: 5px;
}

.category {
  flex: 1; /* Ensures equal spacing for each category */
  font-size: 18px;
  cursor: pointer;
}

.score-display {
  flex: 1; /* Aligns scores directly under their categories */
  font-weight: bold;
  color: black;
  text-align: center;
}