@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap');

:root {
    --green:       #25D366;
    --green-dark:  #128C7E;
    --green-light: #DCF8C6;
    --teal:        #075E54;
    --bg:          #ECE5DD;
    --white:       #ffffff;
    --header-bg:   #075E54;
    --input-bg:    #f0f2f5;
    --msg-in:      #ffffff;
    --msg-out:     #DCF8C6;
    --text-main:   #111b21;
    --text-sub:    #667781;
    --border:      #e9edef;
    --active:      #f0f2f5;
    --red:         #e53935;
    --green-btn:   #43a047;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
    height: 100%; height: 100dvh;
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
}
