@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*fonts*/

body {
    font-family: 'Noto Sans', sans-serif;
}

/*resets*/
*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    box-sizing: border-box;
}

button {
    /*    reset  */
    background-color: transparent;
    margin: 0;
    padding: 0;
    border: none;
    appearance: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: normal;
}



.showcase {


}

.showcase__button-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase__button {
    padding: 10px;
    margin-bottom: 10px;
    background-color: rgb(187, 107, 51);
    color: #fff;
    font-size: 16px;
    transition: .2s ease-out;
}

.showcase__button:hover {
    background-color: rgb(0, 91, 74);
}

.showcase__button:last-child {
    margin-bottom: 0;
}