/* Глобальні стилі */
* {
    margin: 0;
    
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--gvp-color-bg);
    color: var(--gvp-color-text);
    line-height: 1.6;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

