body {
    overflow-x: hidden;
    overflow-y: hidden; 
    background-color: #ffea00;
}

#btnContainer {
    position: absolute;
    width: 100%;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button {
    padding: 25px 45px 25px 45px;
    margin: 35px;
    border-radius: 8px; 
    border: 0.5px;
    height  : 200px;
    cursor: pointer;
}

.button:hover {
    transform: scale(1.1);
    /* padding: 0px 0px 50px 0px; */
}

.button:active {
    transform: translateY(8px);
}

#scoreContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#result {
    position: relative;
    display: flex;
    justify-content: center;
    top: 100px;
    font-size: 200%;
}


#playerText {
   margin-right: 215px;
   font-size: 200%;
}

#playerScore {
    position: relative;
    font-size: 200%;    
    left: 50px;
}

#computerText {
    margin-left: 50px;
    font-size: 200%;
}

#computerScore {
    position: relative;
    font-size: 200%;    
    left: 130px;
}