@import url('https://fonts.googleapis.com/css2?family=Mozilla+Text:wght@200..700&family=Press+Start+2P&display=swap');
body{
    font-family: 'Press Start 2P', 'Times New Roman', 'Courier New'; 
    background-image: url(coffee_background.gif); 
    background-size: cover;
    color: rgb(255, 255, 255);
}
h2{
    font-family: "Mozilla Text";
    font-size: 30px;
}
p{
    font-family: "Mozilla Text";
    font-size: 20px;
}
a{
    color: rgb(122, 214, 122);
    font-family: "Mozilla Text"; 
}
a:hover{
    color: rgba(122, 214, 122, 0.5);
}
.bottombartxt:hover{
    color: rgba(128, 128, 128, 0.5);
    cursor: pointer;
}
.bottombar{
    display: flex; 
    justify-content: space-between; 
    background-color: rgba(128, 128, 128, 0.25); 
    position: absolute; bottom: 0%; left: 0%; 
    width: 100%; 
    height: 50px;
    backdrop-filter: blur(20px); 
    padding: 0%;
}
.windowheader{
    display: flex; flex-direction: row; 
    width: 100%; height: 60px;
    background-color: rgb(65, 31, 31); 
    padding: 0%;
    cursor: grab; 
    justify-content: space-between;
    user-select: none;
    font-size: 20px;
    font-weight: 600;
}
.window{
    border: solid;
    width: fit-content; 
    background-color: rgb(104, 53, 53);
    position: absolute; 
    top: 50%; left: 50%; transform: translate(-50%,-50%); 
    padding: 0%; 
    display: flex; display: none;
    flex-direction: column;
}
.close{
    display: flex; 
    background-color: rgb(119, 119, 119); 
    cursor: pointer; 
    height: 60px; width: 60px;
    padding: 0%;
    justify-content: center;
    color: darkgrey;
}
.close:hover{
    background-color: red;
    color: snow;
}
.welcome{
    display: flex; 
    flex-direction: row;
}
.inwelcome{
    display: flex; flex-direction: column;
}
.desktopApps{
    display: flex;
    user-select: none;
}
.app{
    display: flex; flex-direction: column;
    padding: 16px;
    width: 128px;
    height: 128px;
    align-items: center;
    text-align: center;
    filter: drop-shadow(0 0 8px rgb(32, 24, 24));
}
.app img{
    width: 64px; height: 64px;
}
.chosen{
    background-color: rgba(128, 128, 128, 0.5);
}
#sidebar{
    user-select: none;
    height: fit-content;
}
.sidebar:hover{
    background-color: rgba(128, 128, 128, 0.5);
}
.slotTop{
    width: 180px;
}
div.slotTop{
    padding: 0%;
}
.slotMiddle{
    display: flex;
    flex-direction: row;
    height: 100%;
}
.combos{
    width: 100px; 
    flex-direction: column; 
    padding-right: 12px;
    padding-left: 6px;
    border-left: 6px solid rgb(65, 31, 31);
}
.slotRng{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 15%;
}
.slotNumber{
    width: 25%;
    text-align: center;
}
.multi{
    width: 25%;
    text-align: center;
}
.prize{
    height: 25%;
}
.playButton{
    display: flex;
    height: 40%;
    margin: 10%;
    place-items: center;
    background-color: rgb(65, 31, 31);
}
.playButton:hover{
    background-color: rgba(128, 128, 128, 0.5);
    color: rgb(194, 166, 166);
    cursor: pointer;
}
.map{
    width: 500px;
    height: 500px;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.map iframe{
    position: absolute;
    width: calc(100% + 120px); 
    height: calc(100% + 180px);
    left: -45px;
}
.clickerTop{
    width: 180px;
}
.clickerMiddle{
    display: flex;
    flex-direction: row;
    width: 600px;
    height: 375px;
}
.bigbean{
    height: 100%;
    width: 200px;
    font-family: "Mozilla Text";
    font-size: 20px;
}
.upgrades{
    width: 400px;
    padding-right: 20px;
    padding-left: 6px;
}
.upgrades h2{
    margin: 0%;
}
#upgrades{
    width: 397px;
    height: 50px;
    background-color: rgb(104, 53, 53);
}
.upgrade{
    border: 1px solid snow;
    width: 397px;
    height: 50px;
    padding-left: 5px;
    margin-bottom: 5px;
}
.upgrade5{
    height: 95px;
}
#theBean{
    display: flex;
    justify-content: center;
}
#theBean img{
    width: 150px;
    height: 150px;
}
#theBean img:hover{
    width: 170px;
}
#theBean img:active{
    width: 150px;
}
#youBeatIt{
    position: fixed;
    display: none;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    cursor: url(trophy.png),auto;
    background-image: url(You_actually_did_it.gif);
}