* {
    margin: 0;
    padding: 0;
    font-family: system-ui;
}

article {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(skyblue, lightgreen);
}
section {
    border: 4px solid lightgreen;
    border-radius: 20px;
    justify-items: center;
    align-items: center;
    padding: 5px;
    width: 350px;
}
section#cnt {
    border: 0px solid lightskyblue;
    border-radius: 20px;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
section#dashboard {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
    background-color: white;
}
section#control {
    border: 0px solid grey;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
}
section#control>button {
    border: 4px solid lightskyblue;
    border-radius: 40px;
    padding: 0.5em;
    width: 100%;
    margin: 2px;
}
section#control>select {
    border: 4px solid lightskyblue;
    border-radius: 40px;
    padding: 0.5em;
    width: 100%;
    margin: 2px;
}

.cup {
    width: 60px;
    height: 100px;
    background-color: red;
    border-radius: 15px 15px 0px 0px;
    margin: 5px;
    border: 2px solid black;
    box-shadow: inset 2px 2px 5px lightsalmon;
    /*box-shadow: 0px 4px 2px -2px black;*/
}

.coin {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: yellow;
    border: 1px solid gold;
    filter: drop-shadow(1px 1px 5px gold);
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: orange;
    z-index: 0;
    transition: transform 0.3s linear;
}
