@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

*{
    padding: 0;
    margin: 0;

    color: black;
    background-color: transparent;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;

    border-style: none;
    border-width: 1px;
    border-color: black;
    border-radius: 0px;

    text-decoration: none;
    touch-action: manipulation;
    box-sizing: border-box;
}

button, select{
    cursor: pointer;
    color: black;

    padding: 0;
    appearance: none;
    background-color: transparent;
}