html {
  box-sizing: border-box;
}

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

body {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
  font-family: Arial, Helvetica, sans-serif;
  color: #2D2D2D;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 200px;
  height: auto;
}

.img-webstorm {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 10px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy,
.footer__dev {
  font-size: 17px;
}