/* Import all css scripts*/
@import "snippets/variables.css";
@import "plugins/normalize.min.css";
@import "pages/landing.css";

/*App Generic Styles*/
html, body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--white-primary-color);
    width: 100%;
}
*, :after, :before {
    box-sizing: border-box;
    border: 0 solid var(--white-primary-color);
}
.wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 1rem;
    display: flex;
    min-height: 100vh;
    justify-content: center;
}
.text-primary {
    color: var(--primary-color);
}
.text-primary-dark {
    color: var(--dark-primary-color);
}
.text-bold {
    font-weight: bolder;
}
