* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts =============================================================================================================*/

@font-face {
  font-family: Roboto;
  src: url('../../fonts/Roboto-Regular.ttf');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: Roboto;
  src: url('../../fonts/Roboto-Light.ttf');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: Roboto;
  src: url('../../fonts/Roboto-Medium.ttf');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: Roboto;
  src: url('../../fonts/Roboto-Bold.ttf');
  font-style: normal;
  font-weight: bold;
}


/* Основные стили ====================================================================================================*/

html,
body {
  min-height: 100%;
  height: 100%;
}

body {
  font-family: Roboto, serif;
  font-size: 18px;
  color: #333;
  display: flex;
  flex-direction: column;
}

header {
  flex: none;
  background-color: #1976d2;
  text-align: center;
  padding: 16px 24px
}

header img {
  width: 100%;
  max-height: 90px;
}

.content {
  flex: auto;
  padding: 24px;
  line-height: 1.4;
  text-align: center;
}

.btn-web {
  display: inline-block;
  width: 200px;
  height: 48px;
  padding: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  background-color: #1976d2;
}

.btn-store {
  display: inline-block;
  width: 200px;
  height: 48px;
  margin-top: 24px;
  border-radius: 8px;
  background-size: cover;
}

.btn-google-play {background: url('../img/google-play.svg') no-repeat center}

.btn-app-store {background: url('../img/app-store.svg') no-repeat center}

footer {
  flex: none;
  padding: 24px;
}

footer a {
  display: block;
  position: relative;
  margin-bottom: 24px;
  padding-left: 32px;
  color: inherit;
  text-decoration: none;
}

footer a:before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
}

footer a.phone:before {background: url('../img/icon-phone.svg') no-repeat center}

footer a.mail:before {background: url('../img/icon-mail.svg') no-repeat center}

.copyright {
  font-size: 12px;
  opacity: 0.5;
}
