:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html, 
body {
	width:100%;
	margin:0;
	padding:0;
}

/* Jeśli ekrany większe niż laptop*/
@media (min-width: 1367px) {
	html,
	body {
		font-size:16px !important;
	}
}

/* Jeśli ekrany mniejsze niż laptop*/
@media (max-width: 1367px) {
	html,
	body {
		font-size:14px !important;
	}
}

body {
	background-color: #eee;
	color: #333;
	font-family: Poppins, sans-serif;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
}

a {
  color: #0B3371;
  text-decoration: none;
}

a:hover{
  color: #0B3371;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color:#000;
}

h1,.h1 {
	font-size:2rem;
	margin-top:20px;
	margin-bottom:20px;
}

h2, .h2, h3, .h3 {
	font-size:1.75rem;
	margin-top:20px;
	margin-bottom:20px;
}

h4, .h4, h5, .h5 {
	font-size:1.5rem;
	margin-top:10px;
	margin-bottom:10px;
}

h6, .h6 {
	font-size:1rem;
	margin-top:10px;
	margin-bottom:10px;
}

p {
	margin-bottom:10px;
}

li {
	padding: 5px 0;
}

hr {
	border-color:#ddd;
}

img {
    max-width: 100%;
	max-height:100%;
    margin-left: auto;
    margin-right: auto;
}

