:root {
    --head-color: rgb(55,55,55);
    --body-bgcolor: white;
    --box-color: rgb(255,105,180);
    --b-radius: 5px;
    --text-color: rgb(55,55,55);
    --text-color2: rgb(255,105,180);
    --cart-square: rgb(55,55,55);
    --border-color: rgb(255,105,180);
    --border-color2: rgb(55,55,55);
    --btn-available: rgb(255,105,180);
    --btn-not-available: rgb(201, 201, 201);
}

@font-face {
    font-family: Roboto;
    src: url(/fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: Poppins;
    src: url(/fonts/Poppins-Light.ttf);
}

* {
    font-family: "Poppins", "Roboto";
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: 0;
    user-select: none;
}

*:focus {
    outline: none;
}

img {
    pointer-events: none;
}

body {
    background-color: var(--body-bgcolor);
    font-size: 16px;
    font-family: "Helvetica", "Arial";
    width: 100%;
    overflow-x: hidden;
}
