html {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-image: url("../Images/1954.jpg");
    background-size: 250px;
    background-color: #8d6927;
    background-blend-mode: multiply;
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
}

.game {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

#clickerObject {

    position: relative;
    filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black);
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: auto;
}

#clickerObject img {

    width: 100%;
    height: auto;
    align-items: center;
    -webkit-user-drag: none;
}

#currentClicks {
    text-shadow: 7px 7px 3px #3d3526;
    color: #ffdb98;
    font-size: 42px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    padding-top: 30px;
}

#currentCps {
    font-size: 30px;
    text-shadow: 7px 7px 3px #92929269;
    color: #f0f0f0;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 30px;
}

#clickerContainer {

    text-align: center;
    width: 50%;

    position: relative;
    margin-right: auto;
    height: fit-content;
    width: fit-content;
}

.leftColumn {
    position: relative;
    width: 30%;
    background-image: url("../Images/WoodTexture.jpg");
    background-size: cover;
    background-color: #585858;
    background-blend-mode: multiply;

}

.MiddleColumn {
    width: 40%;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-image: url("../Images/WoodTexture.jpg") 15% stretch;

}

.RightColumn h1,
p {
    margin: 0;

}

.RightColumn h1 {
    margin-bottom: 10px;

}

.RightColumn {
    height: auto;
    width: 30%;
    overflow-y: scroll;
}

.topBar {
    display: flex;
    overflow: hidden;
    background-color: #3a2b10;
    text-transform: capitalize;
    border-style: solid;
    border-width: 3px;
    border-color: #301100fd;
    color: white;
}

.topBar a,
button {
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: #f0f0f0;
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-color: #301100fd;
    padding: 5px;
    transition: .5;
}

.topBar a:hover,
button:hover {
    background-color: #797979;
    color: black;
}

.Upgrade {
    display: flex;
    align-items: center;
    width: auto;
    margin: auto;
    height: 100px;
    justify-content: space-between;
    border: 15px solid #353535;

    background-color: #8b4300;
    padding: 10px 9px;
    position: relative;
}

.Upgrade:hover {
    background-color: #bebebe;

}


.UpgradeImage {
    width: 75px;
}

.UpgradeCostImage {
    width: 40px;
    height: 30px;
}

.NextLevel {
    position: absolute;
    align-content: center;
    left: -215px;
    font-size: 30px;
    background-color: #7a7a7aa4;
    height: 100%;
    width: 200px;
    text-align: center;
    align-items: center;
    color: #f0f0f0;
    display: none;
}

.Upgrade:hover .NextLevel {
    display: block;
}

.cost_text p,
img {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    color: #221909;
    width: auto;
}

.UpgradeLevel {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    color: #221909;
}

.UpgradeCost {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
}

.fade-up {
    animation: fade-up 1s;
}

@keyframes fade-up {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    20% {
        transform: translateY(-5px);
        opacity: 1;
    }

    40% {
        transform: translateY(-10);
        opacity: 1;
    }

    60% {
        transform: translateY(-14px);
        opacity: .8;
    }

    80% {
        transform: translateY(-17px);
        opacity: .5;
    }

    100% {
        transform: translateY(-18px);
        opacity: 0;
    }
}

::-webkit-scrollbar {
    width: 25px;

}

::-webkit-scrollbar-track {
    background: #f0f0f0;

}

::-webkit-scrollbar-thumb {
    background: gray;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}