/*
** COLOR SCHEME
** Purple : B983FF
** Dark blue : 83B8C6
** Light blue : E1F6F2
** Light green : A9E4DE
*/

@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap');

* {
    padding: 0px;
    margin: 0px;
    user-select: none;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Cherry Bomb One", system-ui;
}

main {
    width: 100%;
    height: 100%;
    background: #A9E4DE;
    background: linear-gradient(180deg, #83B8C6 10%, #A9E4DE 100%);
}

.top {
    width: 100%;
    height: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 80px;
    background: -webkit-linear-gradient(180deg, rgb(185, 131, 255), rgba(185, 131, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 40px;
    background: -webkit-linear-gradient(180deg, rgb(185, 131, 255), rgba(185, 131, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bottom {
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cat-img {
    transition-duration: 0.5s;
    width: 250px;
}

.cat-img:hover {
    cursor: pointer;
}

.cat-img:active {
    transform: translateY(-20px);
}

.upgrade_container {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    scrollbar-color: #B983FF transparent;
}

.upgrade {
    margin: 30px;
    border: 2px #B983FF solid;
    border-radius: 50px;
    width: 650px;
    height: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.upgrade_img {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.upgrade_img img{
    width: 80px;
}

.upgrade_buy {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 70%;
    height: 100%;
}

.upgrade_btn {
    text-align: center;
    transition-duration: 0.5s;
    width: 30%;
    height: 30%;
    font-family: "Cherry Bomb One", system-ui;
    background-color: transparent;
    color: #B983FF;
    font-size: 20px;
    border: 2px #B983FF solid;
    border-radius: 50px;
}

.upgrade_btn:active {
    transition-duration: 0.1s;
    color: rgba(185, 131, 255, 0.4);
    border: 2px rgba(185, 131, 255, 0.4) solid;
}

p {
    font-size: 25px;
    color: #B983FF;
}

p img {
    width: 20px;
}
