:root {
  --background: #fbfcfc;
  --text: #111111;
  --header: #080963;
  --header-text: #dbdad8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  line-height: 1.55;
}


.site-header {
  height: 150px;
  background: var(--header);
  color: var(--header-text);
  padding-top: 28px;
}

.company-info {
  width: 760px;
  margin-left: 90px;
  font-size: 0.95rem;
}

.company-info p {
  margin: 0 0 4px;
}

.page {
  width: 840px;
  margin: 34px 0 0 80px;
}

.city-image {
  display: block;
  width: 400px;
  height: auto;
  margin-bottom: 34px;
}

.content {
  width: 760px;
}

.content h1 {
  margin: 0 0 22px;
  font-size: 34px;
  font-weight: 400;
}

.content p {
  margin: 0 0 10px;
}

a:link,
a:visited {
  color: blue;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: green;
}





 

