* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   margin: 0;
  background: lightskyblue;
  user-select: none;
  font-family: sans-serif;
}

#game {
  text-align: center;
  margin-top: 20px;
  position: relative;
}

#timer {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/*Character area*/
#characters {
    position: relative;
    height: 250px;
}

/*Ichigo on the right*/
#ichigo-normal, #ichigo-mask {
    position: absolute;
    right: 50px;
    height: 200px;
    z-index: 3;
    transition: all 0.2 ease;
}

/*Hollow on the left*/
#hollow {
    position: absolute;
    left: 50px;
    height: 200px;
    z-index: 2;
}

/*Slash effect*/
#slash {
    position: absolute;
    top: 50px;
    height: 150px;
    left: 50%;
    z-index: 1;
}

/*Button*/
#buttons {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

#buttons button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/*Hollow HP*/
#health {
    margin-top: 10px;
    font-weight: bold;
}

/*Mask Gauge*/
#maskContainer {
    width: 200px;
    height: 20px;
    border: 2px solid #000;
    margin: 10px auto;
    background-color: #ccc;
    border-radius: 5px;
}

#maskBar {
    height: 100%;
    width: 0%;
    background-color: orange;
    transition: width 0.2s ease;
}

/*Message display*/
#message {
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
}