a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

body {
  color: #fff;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: #323232;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

main {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
main .container {
  display: flex;
}
main .container .tips {
  font-size: 36px;
  padding-top: 280px;
  padding-left: 220px;
}
main .container .tips .call-icon {
  margin-bottom: 40px;
}
main .container .tips .google-play {
  display: inline-block;
  margin-top: 40px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.7;
}
main .container .tips .google-play:hover {
  opacity: 1;
  transform: scale(1.1);
}
main .container .img-container {
  padding-left: 100px;
  min-height: 1000px;
}

footer {
  padding: 0 220px;
  display: flex;
  gap: 30px;
  padding-bottom: 80px;
  font-size: 14px;
}
footer a:hover {
  opacity: 0.8;
}