/* CSS RESET */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%; /* 10px / 16px = 62.5% -> 1rem = 10px */
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.6rem;
}

/* ol,
ul {
  list-style: none;
} */

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1 {
  margin: 2rem;
}
p {
  margin: 0;
  padding: 2rem;
}

.text-bold {
  font-weight: 700;
}
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  color: #ffffff;
  margin: 0;
  padding: 2rem 3rem;
}
.brand {
  max-width: 50%;
}
.brand > img {
  max-width: 100%;
}
.gallery {
  width: 100%;
  min-height: 40rem;
  background-image: url(salon.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}
.content {
  margin: 0;
  padding: 2rem 1rem;
}
.content ul > li {
  margin: 0 5rem;
}
.content ul > li:not(:last-of-type) {
  margin-bottom: 3rem;
}
