@import url(https://fonts.googleapis.com/css?family=Arimo:400,400italic|Playfair+Display+SC:400,700&subset=latin,cyrillic);

body {
  background-color: #ffffff;
}

* {
  font-family: 'Playfair Display SC', serif;
}

.container {
  max-width: 500px;
  margin: 0 auto;
}

.header {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.services {
  list-style: none;
  padding: 0;
}

.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.service-name {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.service-price {
  font-size: 16px;
  margin: 0;
  text-decoration: none;
}

div {
  margin: 0;
}

button {
  background-color: #b893d4;
  color: rgb(0, 0, 0);
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

button:hover {
  background-color: #ba93e7;
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }

  .header {
    font-size: 24px;
  }

  .service {
    flex-direction: column;
    align-items: flex-start;
    padding: 5px;
  }

  .service-name {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .service-price {
    font-size: 14px;
  }

  button {
    padding: 8px 12px;
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 18px;
  }
}
