@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;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");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
    --main-bg: #fafdff;
    --base-color: #009fe3;
    --base-color-dark: #012444;
    --accent-color: #f8a541;
    --accent-color-light: #ffc571;
    --white: #fafdff;
    --black: #222222;
    --grey: #c7c7c7;
    --maxwidth: 960px;
    --error-color: #900;
}
/*Global CSS Here*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    font-size: 16px; /*Aqui definimos el REM*/
}

body {
    font-family: "Montserrat", sans-serif;
    min-width: 300px;
}
button {
    cursor: pointer;
}

.button_disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

@media (max-width: 760px) {
    html,
    body {
        font-size: 14px;
    }
}
@media (max-width: 375px) {
    html,
    body {
        font-size: 13px;
    }
}

/*
    Media Breakpoints comunes
    @media(max-width:375px) {}
*/
