:root {
    --white: rgb(250, 250, 250);
    --dark: #000000;

}
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@font-face {
	font-family: 'Pobeda Bold';
	src: url('../fonts/pobeda_bold.eot'); 
	src: url('../fonts/pobeda_bold.eot?#iefix') format('embedded-opentype'), 
		url('../fonts/pobeda_bold.woff2') format('woff2'),
		url('../fonts/pobeda_bold.woff') format('woff'), 
		url('../fonts/pobeda_bold.ttf') format('truetype'),
		url('../fonts/pobeda_bold.svg#pobeda_bold') format('svg');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    color: var(--white);
    background: var(--bark);
}
a {
    text-decoration: none;
    color: #e4e4e4;;
}
.right {
    text-align: right;
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.hr {
    border-bottom: 0.5px solid #41454d;
}
.dl {
    display: inline-block;
}
