body {
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
/* background: linear-gradient(to right, rgb(103, 164, 255) 50%, red 50%); */
background: linear-gradient(to right, red 50%, rgb(103, 164, 255) 50%);
color: white;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
margin-top: 0%;
font-size: 3.25em;
color: black;
}
#scoreDisplay {
position: absolute;
top: 15%;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 9.75em;
}
.blueScore {
color: black;
width: 50%;
text-align: center;
}
.redScore {
color: black;
width: 50%;
text-align: center;
}
  

button {
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
}
#blueIncrement, #blueIncrement2, #blueIncrement3 {
background-color: rgb(103, 164, 255);
color: white;
font-size: 10.53em;
padding: 0.1053em 0.5265em;
}
#blueDecrement {
background-color: rgb(103, 164, 255);
color: white;
font-size: 5.265em;
padding: 0.1053em 1.053em;
}
#redIncrement, #redIncrement2, #redIncrement3 {
background-color: red;
color: white;
font-size: 10.53em;
padding: 0.1053em 0.5265em;
}
#redDecrement {
background-color: red;
color: white;
font-size: 5.265em;
padding: 0.1053em 1.053em;
}
button:hover {
opacity: 0.8;
transform: scale(1.05);
}
#buttons {
display: flex;
justify-content: space-between;
align-items: center;
position: absolute;
top: 70%;
width: 100%;
transform: translateY(-50%);
}
#buttons > div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 50%;
height: 100%;
}
#buttons > div:first-child {
/* background-color: rgba(103, 164, 255); */
background-color: rgba(255, 0, 0, 0.2);
}
#buttons > div:last-child {
/* background-color: rgba(255, 0, 0, 0.2); */
background-color: rgba(103, 164, 255);
}

