body{
    text-align: center;
}
.Ferguson-Clone{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
}
.Ferguson{
    display: flex;
    justify-content: center;
    align-items: center;
}
#score{
    font-size: 45px;
    margin-top: 20px;
}
.upgrades{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.upgrades:hover{
    transform: scale(1.1);
    background-color: rgb(50, 50, 50);
}
.upgrades2{
    background-color: rgb(240, 75, 75);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.upgrades2:hover{
    transform: scale(1.1);
    background-color: rgb(235, 111, 111);
}
.upgrades2:active{
    transform: scale(0.95);
    background-color: rgb(245, 67, 67);
}



.upgrade-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#Ferguson{
    cursor: pointer;
    transition: transform 0.3s ease;
}
#Ferguson:hover{
    transform: scale(1.1);
}
#Ferguson:active{
    transform: scale(0.95);
}