@font-face {
    font-family: "Determination";
    src: url(assets/DeterminationMonoWebRegular.ttf);
}
@font-face {
    font-family: "Pixel";
    src: url(assets/Pixel.otf);
}
*{
    font-family: "Determination","Pixel",sans-serif;
    color: white;
    -webkit-user-select-: none;
    -moz-user-select-: none;
    -ms-user-select-: none;
}
body{
    background-color: black;
}
button{
    background-color: black;
    border: 4px solid white;
    font-size: large;
}
span{
    color: yellow;
}
.main{
    float: left;
    padding-left: 30%;
}
.right{
    float: right;
}
.score{
    border: 4px white solid;
    padding: 4px;
    font-size: 22px;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
}
.score img{
    position: relative;
    padding: 10px;
    transition: all 0.2s;
}
.score img:hover { transform: scale(1.1); }
.score img:active { transform: scale(.95); }

.shopButton{
    border: 4px solid white;
    transition: all 0.2s ease-in-out;
    margin: 10px 0px 10px 0px;
}
.shopButton #amount{
    font-size: 48px;
    width: 15%;
}
#saver{
    float: left;
    position: absolute;
}
.shopButton #nameAndCost p{
    margin: 0px;
    width: 60%;
}
.shopButton #nameAndCost p:first-of-type{
    font-size: 24px;
}
.yellow{
    color: yellow;
}
#reset{
    border: 4px white solid;
}
