@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
}



body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2e353b;
    color: rgb(239, 231, 231);
}

main {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    height: 100%;
}

.clicker {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    border-radius: 1.2rem;
    padding: 1rem;
    margin: 1rem;
    min-width: 200px;
    color: black;
    
}

.card h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card li {
    border: 2px solid salmon;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 5px;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.card button {

    background-color: bisque;
    border: 2px solid rgb(155, 77, 0);
    border-radius: 4px;
    color: rgb(92, 46, 0);
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;

}

.card small {
    color: rgba(102, 100, 100, 0.848);
    font-style: italic;
    word-spacing: -2px;
    font-family: 'Courier New', Courier, monospace;
}

.shop {
    background-color: aquamarine;
}

.shop ul {
    list-style-type: none;
}

.powerups_list {
    background-color: wheat;
}

/* 
.clicker *:not(:last-child) {
    margin-bottom: 1rem;
} */

#goat_click_btn {
    background: transparent;
    /* background: none; */
    border: none;
    cursor: pointer;
}

.clicker img {
    border-radius: 2rem;
    transition: all ease-in-out 0.3s;
    /* filter: drop-shadow(1px 2px 5px 4px rgba(0, 0, 0, 1) inset); */
}

.clicker img:hover {
    /* scale: 1.01; */
    transform: translateY(-2px) scale(1.02);
    box-shadow: 2px 4px 9px 5px rgba(206, 205, 205, 0.285);
}

.clicker img:active {
    transform: scale(0.5);
    box-shadow: 2px 4px 9px 5px rgba(206, 205, 205, 0.585);

}

#nothingness{
    margin-top: 40px;
}