@import url("../fonts/roboto/font.css");
@import url("../fonts/unicons-line/style.css");

* {
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	display: flex;
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.87);
	background-color: #e8e8e8;
}

p {
	margin-top: 0;
}

ol, ul {
	padding-left: 20px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
}

.pointer {
	cursor: pointer;
}

.main-wrapper {
	display: flex;
	width: 100%;
}

.main-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
    margin: 0 auto;
    width: 100%;
    background-color: #f8f8f8;
    overflow: hidden;
}