*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

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

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

img {
    display: block;
    height: auto;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 15px 40px 15px;  
}

.page-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 20px;
}

.container img {
	width: 70%;
	margin: 0 auto;
}

@media only screen and (max-width: 600px) {
	
	.page-title {
		font-size: 30px;
	}

	.container img {
		width: 100%;
	}
}
