*{
    margin: 0;
    padding: 0;
}

body{
    background-color: snow;
    font-family: "Unkempt", cursive;
}

#score{
    text-align: center;
    font-family: "Unkempt", cursive;
}
.ball{
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(12vw);
    
}

.ballCSS {
    color: rgb(255, 255, 255);
    background-color: red;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid rgb(165, 0, 0);
    transition: 0.3s ease-in-out;
    font-size: 30px;
    cursor: pointer;
    font-family: "Unkempt", cursive;
    letter-spacing: 3px;
    position: absolute;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(16vw);
    flex-direction: column;
}

.score{
    color: red;
    font-size: 30px;
    font-style: italic;
}

#score{
    height: 80px;
    width: 80px;
    border: 5px solid red;
    border-radius: 10px;
    color: black;
    font-size: 40px;
    text-align: center;
}

.upgrades {
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
    background-color: rgb(255, 145, 0);
    border: 5px solid rgb(200, 113, 0);
    border-radius: 0px 10px 10px 0px;
    box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.35);
    width: 200px;
    height: 275px;
    margin-top: 50px;
}

.upgrade{
    color: white;
    font-size: 45px;
    font-style: italic;
    font-weight: bold;
}

#upgradeScore, #upgradeSpeed, #upgradeAutoClicker {
    width: 180px;
    height: 50px;
    margin: 10px;
    background-color: rgb(255, 225, 0);
    border: 2px solid black;
    border-radius: 5px;
    font-family: "Unkempt", cursive;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.35);
    position: relative;
    cursor: pointer;
}

#upgradeScore:hover, #upgradeSpeed:hover, #upgradeAutoClicker:hover {
    background-color: rgb(255, 200, 0);
    box-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.35);
    transform: translateY(2px);
}