/*===* Base Styles Begin *===*/
@font-face {
   font-family: 'montserrat';
   src: url(./google.ttf) format('truetype');
}

*,
*:focus,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: "montserrat";
    line-height: 1.5;
    outline: none;
    font-weight: normal;
    -webkit-user-select: none;
        -webkit-touch-callout: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
}
h3 {
    font-size: 1rem;
    color: #111;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    transition: all 5000s ease-in-out 0s;
    transition-property: background-color, color;
}

:root {
    --site-bg: #fff;
    --site-accent: #4b0000;
    --sub-cta: #dadce0;
    --main-cta: #333079;
    --card-bg: #fff;
    
    --base-fontsize: 1.3rem;
    --font-color: white;
    
    --white-text: #ffffff;
    --black-text: #000000;
    --send-bg: #0b93f6;
    --send-color: white;
    --receive-bg: #e5e5ea;
    --receive-text: black;
    --page-background: white;
    --primary: #507bfc;
    --secondary: #000;
    --softGrey: #9a97a8;
    --bounce: 0.2s cubic-bezier(0.3, 0.3, 0.3, 1);
    --ease: 0.12s cubic-bezier(0.3, 0.3, 0.3, 1);
    --shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;;   
    --white: rgba(255, 255, 255, 1);
}

html,
body {
    display: flex;
    min-height: 100vh;
    min-width: 100% !important;
    background: var(--site-bg);
    flex-direction: column;
    overflow-x: hidden;
}
a,
a:hover,
a:focus,
a:active {
    color: black;
    text-decoration: none;
}

/*===* Base Styles Ends *===*/