@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@300;400&family=Montserrat:wght@300;400&family=Noto+Sans:wght@300;400;500;600;700&family=Open+Sans&family=Roboto&family=Roboto+Mono:ital,wght@0,300;0,400;0,600;0,700;1,500&display=swap');
*
{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body, html
{
    height: 100%;
}
body 
{
    background-color: rgb(15, 15, 15);
    font-family: 'Roboto Mono', monospace;
    color: white;
}
    .background
    {
        display: flex;
        justify-content: center;
    }
        .background::after
        {
            content: "";
            position: fixed;
            height: 100%;
            width: 100%;
            background: url("../img/3spirited.jpg");
            opacity: 0.4;
            z-index: -1;
            background-repeat: no-repeat; 
            background-position: center;
            background-attachment: fixed;       
            webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
        }
    .resetMenu
    {
        display: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.5);
        /* opacity: 0.5; */
    }
        .resetMenu h1
        {
            opacity: 0.5;
        }
        .resetOptions
        {
            display: flex;
            justify-content: center;
            gap: 1em;
        }
            .resetYes
            {
                color: #28a412;
                cursor: pointer;
                opacity: 0.5;

            }
                .resetYes:hover
                {
                    opacity: 1;
                }
            .resetNo
            {
                color: #a41212;
                cursor: pointer;
                opacity: 0.5;
            }
                .resetNo:hover
                {
                    opacity: 1;
                }

    header
    {
        display: flex;
        justify-content: center;
    }
        header h1
        {
            font-size: 50px;
            filter: drop-shadow(0.005rem 0.005rem 0.2rem #69107d);
        }
        .menu
        {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }
            .mainMenu
            {
                display: flex;
                align-items: center;
                gap: 1em;
            }
                .mainMenu a
                {
                    font-size: 30px;
                    color: white;
                }
                    .mainMenu a:hover
                    {
                        color: #69107d;
                    }
            .reset
            {
                margin: 1rem 0 0 1rem;
            }
            .settings
            {
                margin: 1rem 1rem 0 0;
            }
                .reset i, .settings i
                {
                    cursor: pointer;
                }
                .reset i:hover
                {
                    color: rgb(161, 12, 12);
                }
    main
    {
        text-align: center;
    }
        .plusWindow
        {
            width: 100%;
            max-width: 600px;
            max-height: 600px;
            height: auto;
        }
            .plus
            {
                position: absolute;
                display: none;
                font-size: 25px;
                color: white;
                filter: drop-shadow(0.005rem 0.005rem 0.2rem #69107d);
                pointer-events: none;
            }
        .board
        {
            display: flex;
            justify-content: center;
            gap: 1em;
            font-size: 20px;
            align-items: center;
        }
            .money
            {
                font-size: 30px;
            }
        .clickerWindow img
        {
            border: #69107d 1px solid;
            width: 100%;
            max-width: 600px;
            height: auto;
            cursor: pointer;
        }
        .achievements
        {
            text-align: left;
            position: absolute;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 600px;
            display: none;

        }
            .achievement
            {
                margin: 1rem;
                display: flex;
                background-color: rgba(0, 0, 0, 0.6);
                padding: 5rem 1rem 5rem 1rem;;
                text-align: center;
                border-radius: 15px;
                flex: 1;
            }
                .achievement h1
                {
                }




    /* SHOP */
    .shop
    {
        display: flex;
        justify-content: center;
        gap: 1rem;

    }
        .shop img
        {
            width: 200px;
            height: 200px;
        }
        .perClickShop, .perSecondShop
        {
            display: flex;
            flex-direction: column;
            gap: 1rem;

        }
            .perClickShopItem, .perSecondShopItem
            {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: rgba(0, 0, 0, 0.6);
                max-width: 400px;
            }
                .perClickShopItemInfo, .perSecondShopItemInfo
                {
                    display: block;
                    margin: auto;
                    margin-left: 1rem;
                    margin-right: 1rem;
                    width: 200px;
                }
                    .perClickShopItemBuyButton span
                    {
                        font-weight: bold;
                        font-size: 20px;
                    }
                        .perClickShopItemBuyButton span:hover
                        {
                            color: #28a412;
                            cursor: pointer;
                        }
                @keyframes fall{
                    0%
                    {
                       top: 0px;
                       transform: rotate(-10deg);
                    }
                    30%
                    {
                       transform: rotate(10deg);
                    }
                    60%
                    {
                       transform: rotate(-10deg);
                    }
                    90%
                    {
                       transform: rotate(10deg);
                    }
                    100%
                    {
                       top: 110vh;
                       transform: rotate(0);
                    }
                  }
                    .animationText
                    {
                        left: 100px;
                        height: 150px;
                        width: 150px;
                        position: fixed;
                        pointer-events: none;
                        animation: fall 5s linear;
                        animation-fill-mode: forwards;
                        z-index: -1;
                    }

    footer
    {
        text-align: center;
    }
    img::selection, .plus::selection 
    {
        background: 0 0;
    }
    img::-moz-selection, .plus::selection 
    {
        background: 0 0;
    }
    @media (max-width: 900px)
    {
        .shop
        {
            display: block;
            margin: auto;
            overflow: auto;
            height: 700px;
        }
            .perClickShop, .perSecondShop
            {
                justify-content: center;
                align-items: center;
            }
    }
    @media (max-width: 700px)
    {
        header h1
        {
            font-size: 40px;
            filter: drop-shadow(0.005rem 0.005rem 0.2rem #69107d);
        }
            .mainMenu a
            {
                font-size: 20px;
            }
            .shop img
            {
                width: 150px;
                height: 150px;
            }
            .perClickShopItem, .perSecondShopItem
            {
                max-width: 300px;
            }            
            .perClickShopItem h1, .perSecondShopItem h1
            {
                font-size: 20px;
            }
            .clickerWindow img
            {
                max-width: 250px;
            }
            .resetMenu h1
            {
                font-size: 15px;
            }
    }
