@font-face {
    font-family: "Aller";
    src: url(Assets/fonts/Aller_Rg.ttf);
    font-family: "Montserrat";
    src: url(Assets/fonts/Montserrat-Regular.ttf);
    font-family: "Montserrat-Bold";
    src: url(Assets/fonts/Montserrat-Bold.ttf);
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
*{
    font-family: "Aller";
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}
html{
    background: #b1e4e6;
    background: linear-gradient(223deg,rgb(143, 127, 166) 0%, rgb(180, 143, 166) 100%);
}
body, main{
    height: 100vh;
    overflow: hidden;
}
#game {
    max-height: max-content;
    height: 100%;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    height: calc(100vh - 60px);
}
#section-left,
#section-middle,
#section-right {
    height: calc(100vh - 100px);
    overflow-y: auto;
    margin-top: 1%;
    border-radius: 5px 5px 0px 0px;
    overflow-x: hidden;
}
#section-left {
    width: 25%;
    background: #281f54;
    background: linear-gradient(179deg,rgba(40, 31, 84, 0.69) 0%, rgba(93, 33, 128, 1) 98%);
    pointer-events: auto;
}

#section-middle {
    width: 50%;
    background: #a8a8a8;
    background: linear-gradient(179deg,rgb(223, 223, 223) 0%, rgb(197, 193, 193) 99%);
    pointer-events: auto;
}

#section-right {
    width: 25%;
    background-color: darkgray;
    pointer-events: auto;         
    overflow: visible;
    overflow-y: scroll;
}
@keyframes hovering{
    from{
        top: 32%;
        text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.797);
    }
    to{
        top: calc(32% + 50px);
        text-shadow: 3px 2px 2px rgba(255, 255, 255, 0.688);
    }
}
#loading{
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    background-color: #070735ee;
    border: #c8d5d5 5px solid;
    color: #fff;
    z-index: 100000000;
    background: linear-gradient(179deg,rgba(1, 0, 6, 0.912) 0%, rgb(19, 5, 27) 98%);
}
.loading-img{
    size: 5rem 5rem;
    margin-top: 15%;
    position: absolute;
}
.hover{
    top: 32%;
    margin-left: 30%;
    animation: hovering;
    animation-duration: 4s;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    position: relative;
}
#name{
    color: white;
    margin-top: 23px;
}
.namething{
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -20px;
    padding-bottom: -10px;
}
#namebox{
    margin-top: -10px;
    padding: 5px;
    border-radius: 10px;
    border: #11116d;
    animation-name: rainbow;
    animation-duration: 2s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes rainbow{
 0%{ 
    color: #cb0e0e;
 }
 15%{ 
    color: #cb6c0e;
 }
 30%{ 
    color: #cbb50e;
 }
 50%{ 
    color: #21cb0e;
 }
 65%{ 
    color: #0ebecb;
 }
 80%{ 
    color: #cb0e6c;
 }
 95%{ 
    color: #cb0e3a;
 }
 100%{
    color: #cb0e0e;
 }
}
.rainbow-enabled * {
    animation: rainbow 10s linear infinite;
}
#namebox:hover{
    background-color: #b1e4e6;
}
#clickContainer{
    position: absolute;
     inset: 0;
     pointer-events: none;     
    overflow: visible;
    margin-left: 0;
}
#potion-button{
    user-select: none;
}
.click-float {
    position: absolute;
    transform: translateY(0);
    z-index: 1000;
    font-weight: 700;
    color: #dd20b7;       
    text-shadow: 1px 3px 0 #3a0b7266;
    font-size: 1.5rem;
    user-select: none;
    background-color: #971d7f49;
}

.menu{
    display: flex;
    padding: 5px;
    width: 75%;
    margin-right: 12.5%;
    background-color: darkslategrey;
    color: antiquewhite;
    border-radius: 0 0 5px 5px;
}
.menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin-right: 0.5rem;
    align-items: flex-start;
}
.menu li{
    margin-right: 2rem;
    display: flex;
    align-items: center;
}
.menu a{
    color: antiquewhite;
}
.menu li.title{
    margin-left: 1rem; 
    color: gold;
}
.potion-button{
    border: 0;
    background: none;
}
.logo{
    height: 1rem;
    margin-left: 5px;
}
#flavour-text{
    text-align: center;
    font-size: large;
    color: rgb(166, 100, 237);
    padding-top: 30px;
    padding-bottom: 30px;
    width: 60%;
    margin: auto;
    background-color: rgba(230, 230, 250, 0.464);
    transition: 0.2s linear;
    user-select: none;
}
cite.sigil{
    font-size: small;
    text-align: end;
}
#flavour-text:hover{
    color: rgb(95, 78, 176);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.507);
}

#button-containers {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: auto;
}
#info-button,
#stats-button,
#options-button,
#ach-button  {
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 0.6rem 1.2rem;
    background-color: #7a7aae;
    color: white;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: 2px solid rgb(0, 0, 0);
    transition: background-color 0.25s ease;
}

#info-button:hover,
#stats-button:hover,
#options-button:hover,
#ach-button:hover {
    background-color: #6a6ab3;
}

#info-text,
#stats-text,
#options-text,
#ach-text{
    margin: auto;
    padding: 1rem;
    background: rgb(29, 29, 29);
    color: white;
    border-radius: 2px;
    border: 5px white ridge;
    width: 90%;
    overflow: hidden;
    z-index: 100;
}
#stats-text{
    margin-top: -10px;
}
#options-text{
    margin-top: -10px;
}
#ach-text{
    margin-top: -10px;
}
#info-text.untoggled,
#stats-text.untoggled, 
#options-text.untoggled,
#ach-text.untoggled{
    opacity: 0;
    max-height: 0;
    padding: 0;
    pointer-events: none;
}
#info-text.toggled,
#stats-text.toggled,
#options-text.toggled,
#ach-text.toggled {
    opacity: 1;
    max-height: fit-content;
    pointer-events: auto;
}

.page-title{
    font-size: x-large;
    color: rgb(255, 255, 255);
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.507);
}
.major{
    color: cadetblue;
}
.major::before {
    content: "";
    display: block;
    height: 2px;
    width: 50%;
    background: linear-gradient(82deg,cadetblue 0%, rgba(102, 102, 102, 0.36) 74%);
    margin: 6px 0px 6px -16px;
}
.major::after {
    content: "";
    display: block;
    height: 2px;
    width: 50%;
    background: linear-gradient(82deg,cadetblue 0%, rgba(102, 102, 102, 0.36) 74%);
    margin: 6px 0px 6px -16px;
}
.minor{
    color: grey;
    font-size: large;
}
.minor::before {
    content: "";
    display: block;
    height: 1px;
    width: 50%;
    background: linear-gradient(82deg,gray 0%, rgba(102, 102, 102, 0.36) 74%);
    margin: 6px 0px 6px -16px;
}
.minor::after {
    content: "";
    display: block;
    height: 1px;
    width: 50%;
    background: linear-gradient(82deg,gray 0%, rgba(102, 102, 102, 0.36) 74%);
    margin: 6px 0px 6px -16px;
}

#score-container{
    text-align: center;
    color: gold;
    font-size: xx-large;
    font-family: "Montserrat-Bold", sans-serif;
    padding: -5px;
    text-shadow: 2px 2px 1px rgb(0, 0, 0);
    user-select: none;
    margin-top: 0;
}
#pps-container{
    text-align: center;
    color: rgb(255, 255, 255);
    font-family: "Montserrat-Bold", sans-serif;
    margin-top: -5px;
    text-shadow: 1px 1px 2px white;
    user-select: none;
}
#potion-button{
    display: flex;
    justify-content: center;
    align-items: center;
    place-items: center;
    margin-left: 25%;
    width: 40%;
    position: relative;
    transform-origin: center;
    z-index: 100;
}
.big-potion{
    transition: all 100ms ease-out;
    scale: 1.25;
    padding: 1rem;
    margin-top: 50px;
}
.big-potion:hover{
    transition: all 200ms cubic-bezier(.19,1.83,.86,.87);
    transform: scale(1.45);
    cursor: pointer;
}
.big-potion:active{
    transition: all 100ms cubic-bezier(.19,1.43,.86,.87);
    transform: scale(1.35);
}
.radial-glow{
    position: absolute;
    width: 20%;
    z-index: 2;
    opacity: 0.65;
    user-select: none;
    animation: rotate 10s linear infinite;
    margin-left: 2.5%;
    margin-top: 2.5%;
}
.radial-glow2{
    position: absolute;
    width: 25%;
    z-index: 1;
    opacity: 0.4;
    user-select: none;
    animation: rotate 20s linear infinite;
}
h2.center{
    text-align: center;
    color: white;
    padding: 1rem;
    padding-bottom: 0;
    user-select: none;
    font-size: xx-large;
    padding-top: 0;
}

.logo-img{
    align-self: flex-start;
    position: absolute;
    width: 124px;
    height: 64px;
    top: 0;
    right: 124px;
    padding: 5px 40px 0px 40px;
    margin-top: 5px;
    background-color: rgba(54, 90, 90, 0.456);
    border-radius: 5px 5px 10px 20px;
}
#upgrades{
    display: grid;
    grid-template-columns: repeat(auto-fill, 54px);
    grid-auto-rows: 54px;       
    width: calc(100% - 10px);
    position: relative;
    background-color: aquamarine;
    min-height: 128px;
    border: 5px solid darkgreen;
    height: auto;
}
.workers{
    position: relative;
    background-color: rgba(0, 255, 255, 0.477);
    width: 90%;
    height: 50px;
    border: 2px;
    padding: 3px;
    margin: 5px;
    margin-left: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    display: block;
    display: flex;
    align-items: center;     
    justify-content: center;
    flex-direction: column;  
    box-shadow: 3px 20px 0 0 rgba(55, 255, 225, 0.3) inset;
    border: 4px solid rgb(39, 62, 29); 
    outline: 3px solid rgb(255, 255, 255);
    user-select: none;
    font-size: 0.8rem;
} 

.hitbox{
    position: absolute;
    background-color: rgba(255, 0, 0, 0);
    width: 100%;
    height: 100%; 
    top: 0;
    left: 0;
    padding: 3px;
    margin-left: 0;
}
.worker-title {
    font-size: 1.1rem;
    margin: 0;
    text-align: center;      
    margin-left: -5px;
}
.worker-png{
    position: absolute;
    height: 50px;
    width: 50px;
    left: 20px;
    top: 5px;
    user-select: none;
}
.counter {
    position: absolute;
    top: 5px;
    left: 74%;
    font-size: 40px;
    font-weight: bold;
    color: gold;
}
.potion-icon{
    height: 1rem;
}
.worker-desc {
  position: fixed;     
  left: calc(75% - 350px);         
  top: 0;            
  width: 300px;
  background-color: black;
  color: #fff;
  border-radius: 6px;
  padding: 8px;
  visibility: hidden;
  z-index: 2000;
  pointer-events: none; 
  border: 4px white solid;
  font-size: 1rem;
}

.workers:hover .worker-desc {
  visibility: visible;
}

.upgrade {
    background-color: rgba(255, 215, 0, 0.2);
    border: 3px solid gold;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: 0.1s;
}
.upgrade-desc{
    position: fixed;     
    left: calc(75% - 350px);                
    width: 300px;
    background-color: black;
    color: #fff;
    border-radius: 6px;
    padding: 8px;
    visibility: hidden;
    z-index: 2000;
    pointer-events: none; 
    border: 4px white solid;
}
.upgrade-desc q,
.worker-desc q,
.ach q{
    color: khaki;
    font-size: small;
}
.upgrade:hover .upgrade-desc {
  visibility: visible;
}
.workers:hover .worker-desc {
  visibility: visible;
}
.ach:hover .ach-desc {
  visibility: visible;
}
.upgrade:hover {
    background-color: rgba(255, 215, 0, 0.6);
}

.upgrade-icon {
    width: 48px;
    height: 48px;
    display: block;
    margin: auto;
    pointer-events: none;
    transition: 0.2s;
    user-select: none;
}

.upgrade.locked{
    visibility: hidden;
    pointer-events: none;
    width: 0px;
    height: 0px;
    border-radius: 0px;
    border: 0px;
    position: absolute;
}

.upgrade.unlocked {
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

.upgrade.bought {
    visibility: hidden;
    pointer-events: none;
    width: 0px;
    height: 0px;
    border-radius: 0px;
    position: absolute;
}

details {
  border: 2px solid #2b5ac8;
  border-radius: 4px;
  padding: 0.5rem;
  margin-top: 5px;
  background: radial-gradient(circle,rgba(63, 49, 92, 0.399) 0%, rgba(65, 91, 135, 0.212) 100%);
  outline: 2px solid rgb(255, 255, 255);
  user-select: none;
  cursor: pointer;
  margin-left: 1%;
  margin-right: 20%;
  margin-bottom: 10px;
}

details>summary{
    display: block;
  list-style-type: none;
}
summary::before {
  margin-right: 2rem;
  display: inline-block;
  content: '➡';
  transition: 0.2s;
}

details[open] > summary::before{
  transform: rotate(90deg);
}

details[open] {
  padding: 0.5em;
  font-size: small;
}

summary{
    font-weight: bold;
}

details[open] summary {
    font-size: 1rem;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 1rem;
}

.misc-option{
    padding: 5px;
    background: #6a6ab3;
    color: white;
    width: 50%;
}
.misc-option:hover{
    background: #4a4a7c;
}
.misc-option:active{
   background: #3a3a5e; 
}

.save-buttons{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-left: 3rem;
}
.save, 
.load,
.wipe{
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 0.6rem 1.2rem;
    background-color: #7a7aae;
    color: white;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: 2px solid rgb(0, 0, 0);
    transition: background-color 0.25s ease;
}
.wipe{
    background-color: #e7450f;
}
.save:hover,
.load:hover{
    background-color: #6a6ab3;
}
#golden{
    position: absolute;
    transform-origin: center;
    z-index: 101;
    transition: transform 7.5s ease-in-out;
    cursor: pointer;
}

.hidden{
    position: absolute;
    transform: scale(0);
    visibility: 0;
    content: '';
}

.visible{
    visibility: 1;
    transform: scale(1.0); 
}

.animationvisible{
    visibility: 1;
    transform: scale(1.0);
    animation-name: enterIn;
    animation-duration: 1.5s;
    animation-direction: alternate;
    animation-iteration-count: 2;
    animation-timing-function: ease-in-out;
}

.golden-desc{
    user-select: none;
    position: absolute;
    color: white;
    background-color: rgb(45, 60, 47, 0.5);
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.507);
    padding: 5px;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: 0.2s;
    margin-left: -50px;
    z-index: 102;
    width: max-content;
}

@keyframes luckyenter{
    0%{
        width: 0;
        height: 0;
    }
    30%{
        width: 120px;
        height: 120px;
    }
    50%{
        width: 128px;
        height: 128px;
    }
    70%{
        width: 120px;
        height: 120px;
    }
    100%{
        width: 0;
        height: 0;
    }
}

#lucky-icon{
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-left: 23%;
}
.lucky-potion-icon{
    border: 5px black solid;
    border-radius: 2px;
    background: #6a6ab3;
    width: 48px;
    height: 48px;
    transition: 0.2s linear;
    corner-shape: squircle;
    border-radius: 5px;

}

.ach-icon{
    background-color: rgba(255, 215, 0, 0.2);
    border: 3px solid gold;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}

.ach-desc{
    position: fixed;     
    width: 300px;
    background-color: rgb(58, 12, 48);
    color: #fff;
    border-radius: 6px;
    padding: 8px;
    visibility: hidden;
    z-index: 2000;
    pointer-events: none; 
    border: 4px white solid;
    order: 1; 
}

#ach-box{
    display: grid;
    grid-template-columns: repeat(auto-fill, 54px);
    grid-auto-rows: 52px;       
    position: relative;
    background: #252533;
    width: 90%;
    border: 4px white ridge;
    padding: 1rem;
}

.gray{
    color: #070735;
}
.red{
    color: red;
}
@keyframes enterIn {
    0%   {bottom: -60px; background-color: #07073500; color: #ffffff00;}
  20%   {bottom: -30px; background-color: #0707357f; color: #ffffff50;}
  80% {bottom: 20px; background-color: #070735; color: #fff;}
  100% {bottom: 25px; background-color: #220735; color: #fff;}
}

#unlock{
    position: absolute;
    margin-left: 17%;
    background-color: #070735;
    color: #fff;
    width: 20%;
    user-select: none;
    border-radius: 5px 5px 10px 0;
    padding: 0.5rem;
    bottom: 20px;
    z-index: 1000;
    margin-top: -100px;
    width: 300px;
    height: 200px;
}

#worker-box{
    width: 95%;
    border-radius: 9px;
    margin: auto;
}

#worker-box > div{
    min-width: 100%;
    height:136px;
    border: 5px rgba(6, 5, 7, 0.466) solid;
    margin-bottom: 5px;
    border-radius: 20px 30px 20px 20px;
    overflow: auto;
    display: flex;
    flex-direction: right;
    scrollbar-gutter: stable;
    overflow-y: hidden;
    background-image: url("Assets/ach/question\ mark.png");
    background-repeat: repeat-x;
    background-size: 128px 128px;
    user-select: none;
    corner-shape: superellipse(1.5);
    scroll-behavior: smooth;
}
#mouse-box{
    background-color: rgb(113, 12, 12); 
    background-size: 400px 136px !important;
    background-image: url("Assets/workerbg/mouse.png") !important;
}
#wizard-box{
    background-color: rgb(90, 60, 12);
    background-size: 500px 136px !important;
    background-image: url("Assets/workerbg/wizard.png") !important;
}
#brewery-box{
    background-color: rgb(99, 96, 16);
    background-size: 500px 136px !important;
    background-image: url("Assets/workerbg/brewery.png") !important;
}
#manufacturer-box{
    background-color: rgb(16, 97, 14);
}
#lab-box{
    background-color: rgb(12, 85, 47);
}

#forest-box{
    background-color: rgb(13, 82, 87);
}

#amount-nav > *{
    display: inline-block;
    user-select: none;
}
#amount-nav{
    background-color: #37374e;
    border-radius: 5px;
    border: #11116d7e 5px solid;
    width: 90%;
    margin: auto;
    margin-top: 3px;
    margin-bottom: 3px;
    height: 3rem;
    height: auto;
}
.amount{
    margin-left: 5px;
    color: #0ebecb;
}
.glow:hover{
    color: #c8d5d5;
    text-shadow: #b1e4e6 2px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.507);
}
.glow{
    margin-left:5%;
    font-size: 1.5rem;
    color: #749a9b;
    padding: 5px;
    animation: 0.2s;
}
.glow.selected{
    color: #c8d5d5;
    text-shadow: #b1e4e6 2px;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.707);
}

.menu-toggle{
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: aquamarine;
    border-radius: 100px;
    border: 5px solid rgb(20, 100, 73);
    cursor: pointer;
    z-index: 5;
    margin-top: -5px;
}
.hamburger{
    position: relative;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    z-index: 10;
}

.hamburger > span,
.hamburger > span::before,
.hamburger > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 100px;
    background-color: #12c79d;
    transition-duration: .25s;
    
}
.hamburger > span::before{
    content: '';
    bottom: -8px;
}
.hamburger > span::after{
    content: '';
    bottom: 8px;
}
.menu-toggle.is-active .hamburger > span{
    transform: rotate(45deg);
}
.menu-toggle.is-active .hamburger > span::before{
    top: 0;
    transform: rotate(0deg);
}
.menu-toggle.is-active .hamburger > span::after{
    top: 0;
    transform: rotate(90deg);
}

@media (max-width: 1200px){
    .logo-img{
        right: 16px;
    }

    .worker-title {
        font-size: 1.2rem;
    }
    .counter {
        right: 10px;
    }
    #info-button,
    #stats-button,
    #options-button,
    #ach-button  {
        margin: 10px;
    }
    .counter {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    }

    #unlock{
        width: 25%;
    }
    .worker-png{
        margin-left: -10px;
    }

    #button-containers {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin: auto;
    }

    #button-containers > button{
        font-size: small;
        width: min-content;
    }
}

@media (max-width: 720px) or (orientation: portrait) {
    #section-left,
    #section-middle,
    #section-right {
    overflow-y: auto;
    margin-top: 1%;
    border-radius: 5px 5px 0px 0px;
    width: 95%;
    border: 5px rgba(26, 28, 45, 0.611) solid;
    margin-left: none;
}
#section-left{
    overflow-y: hidden;
}
#section-middle.shrink{
    height: 46vh;
    overflow-y: hidden;
}
    #game{
        display: flex;
        flex-direction: column;
        align-items: center; 
        height: 150vh;
        justify-content: center;
    }

    body, main{
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    }

    .menu li{
        margin-right: 1rem;
        font-size: small;

    }
    .logo-img{
        width: 100px;
        height: 64px;
        padding: 5px;
    }
    .radial-glow{
        user-select: none;
        opacity: 0;
        margin-top: -1000rem;
    }
    .radial-glow2{
        user-select: none;
        opacity: 0;
        margin-top: -1000rem;
    }

    #name{
        top: 0px;
        margin-top: 0px;
        margin-right: 1rem;
    }
    .namething{
        font-size: 2rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 10px;
        margin-left: 30%;
    }

    #potion-button{
    margin-left: 35%;
    width: 30%;
    position: relative;
    transform-origin: center;
    z-index: 100;
}
.big-potion{
    transition: all 100ms ease-out;
    scale: 1.25;
    padding: 1rem;
    margin-top: -5px;
    width: 400px;
    height: 400px;
}
#score-container{
    margin-top: -15px;
    font-size: 4rem;
}
#pps-container{
    margin-top: -15px;
    font-size: 2.5rem;
}
.big-potion:hover{
    transform: scale(1.35);
}
.big-potion:active{
    transform: scale(1.25);
}
#unlock{
    width: 80%;
    position: fixed; 
    opacity: 1;
    font-size: 1.5rem;
}
.menu-toggle{
        display: block;
        position:initial;
    }
    #flavour-text{
        font-size: 1rem;
        width: 90%;
    }
    #nav{
        width: 65%;
        overflow-x: scroll;
    }
    .menu {
        width: 150%;
    }
    .lucky-potion-icon{
        position: fixed;
        margin-top: -150%;
        z-index: 60000;
        margin-left: 15%;
    }

    
    #info-button, #stats-button, #options-button, #ach-button {
        padding: 0.75rem;
    }

    #flavour-text{
        size: 1.8rem;
    }
    
.ach-desc{
    margin-left: -100px;
    background-color: #070735c0;
    width: 250px;
    height: 150px;
    margin-top: 5vh;
}
.upgrade-desc{
    margin-left: 200px;
    background-color: #070735c0;
    margin-top: -30vh;
    width: 250px;
    height: 160px;
    font-size: small;
}
.worker-desc{
    background-color: #252533ca;
}
#loading{
   height: 150vh;
}
.hover{
    position: fixed;
    margin-left: 5px;
}
#clickContainer{
    margin-left: 25%;
}
}

