@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');

*{
    margin: 0;
    padding: 0;
}

main{
    transition: 1s;
    width: 100%;
    height: 100%;
    background-color: #252526;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
    font-family: 'Major Mono Display', monospace;
    font-size: 30px;
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.counters{
    margin-top: 10%;
    font-size: 40px;
}

.section{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, .4);
    width: 30vw;
    height: 90vh;
    margin: 5vh;
    border-radius: 20px;
    transition: 300ms;
}

.info{
    width: 30vh;
    height: 7vh;
}

.buy{
    width: 7vh;
    height: 7vh;
}

.buy:hover{
    transition: 100ms;
    background-color: rgba(200, 200, 200, .4);
}

.item{
    width: 100%;
    height: 100%;
}

.itemInfo{
    font-size: 12px;
    width: 33%;
}

.informer{
    transition: 300ms;
    position: absolute;
    margin-top: 1.65%;
    margin-left: .5%;
    border: none;
    width: 1.3vh;
    height: 1.3vh;
    border-radius: 50%;
    background-color: red;
}

.close{
    color: black;
    width: 100%;
    padding: 3%;
    margin: 3%;
}

.close:hover{
    color: #464545;
    transition: 800ms;
}

#settings{
    display: none;
    flex-direction: column;
}

#clicker{
    display: none;
    width:30vh;
    height: 30vh;
    border-radius: 50%;
    background-color: rgb(7, 85, 85);
    display: flex;
    justify-content: center;
    align-items: center;
}

#clickerFrame{
    width: 100%;
    margin-top: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#upgrades{
    display: none;
}

.button{
    width: 10vh;
    height: 10vh;
    border-radius: 20px;
}

.button:hover{
    transition: 800ms;
    font-size: 80px;
    background-color: white;
    color: black;
}

#buttons{
    width: 100%;
    margin-top: 15%;
    display: flex;
    justify-content: space-evenly;
}

#theme{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#themeSwitch{
    background-color: white;
    width: 10vh;
    height: 3vh;
    padding: 1%;
    margin: 10px;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    transition: 300ms;
}



#themeColor{
    height: 100%;
    width: 30%;
    background-color: black;
    border-radius: inherit;
    transition: 500ms;
}

.buttonh5{
    margin-top: 5%;
}

h1{
    font-size: 50px;
    padding: 5%;
}

h5{
    font-size: 15px;
    text-decoration: overline;
}

td{
    border: 1px solid #464545;
}

img{
    width: 35%;
    display: block;
}

button{
    font-family: inherit;
    font-size: 50px;
    text-decoration: none;
    border: none;
    background-color: black;
    color: white;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

footer{
    width: 30%;
}