@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'),
        url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium'), local('Roboto-Medium'),
        url('../fonts/Roboto-Medium.woff2') format('woff2'),
        url('../fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Bold'), local('Roboto-Bold'),
        url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --clr-bg_1: #160355;
    --clr-mark: #EB7F00;
    --clr-bg_2: darkred;
    --clr-light: #fff;
    --clr-dark: #000000ee;
    --clr-grey: #555555;

    --clr-main_bg: #d1d1d1;
    --clr-main_txt: #1361A3;
    --clr-main_button: #F8C514;

    --b-radius: .25rem;

    --block-px: .3rem;
    --block-py: .5rem;
}

html {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

body {
    margin: 0;
}

.container {
    max-width: 480px;
    padding-left: .5rem;
    padding-right: .5rem;
    padding-top: .5rem;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}

[hidden] {
    display: none !important;
}

:disabled {
    opacity: .6;
}