@import "fonts/gordita.css";

html {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Gordita', -apple-system, sans-serif;
    color: #0F2F4C;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

* {
    -webkit-tap-highlight-color: transparent;
}

*:focus {
    outline: none;
}

a, a:visited {
    color: #1D1D1F;
    text-decoration: none;
}

button,
input,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: 100%;
    font-weight: 400;
    line-height: 1.4;
    color: inherit;
    outline: 0;
    background: transparent;
}

h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
}

/* Loader in index.html */
@keyframes root__loader {
    from { transform: rotate(0deg) }
    to { transform: rotate(360deg) }
}
