body{
  margin: 0;
  font-family: sans-serif;
  font-family: 'Round', sans-serif;
}

.menu{
  max-width: 1000px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}
  

.menu .logo{
  height: 60%;
}

.menu .name{
  font-size: 20px;
  color: #8436BD;
  cursor: default;
}

.content{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  padding-bottom: 0;
  background: url('./images/bg.jpeg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: calc(100vh - 300px);
}

.content .phone{
  height: 550px;
}

.content .title{
  color: #8436BD;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.content .text{
  line-height: 30px;
  font-size: 20px;
  margin-top: 20px;
  color: rgb(42,42,42);
  font-family: 'Light', sans-serif;
}

.content .text b{
  font-family: 'Round', sans-serif;
}

.content .markers {
	list-style-type: "⭐️ ";

}
.content .markers li {
	margin: 7px 0;
}

.content .appstore{
  width: 140px;
}

.footer{
  background: #A061C2;
  color: whitesmoke;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
}

.footer .title{
  font-size: 30px;
  font-weight: bold;
}

.footer .subtitle{
  font-size: 20px;
  margin-top: 20px;
}

.footer .appstore{
  width: 150px;
}

.footer .copyright{
  line-height: 30px;
  text-align: center;
}

.footer .copyright a{
  color:whitesmoke;
}