:root {
  --color-light: #f9f6ec;
  --color-dark: #3e4f3c;
  --font-heading: 'Italiana', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-script: 'Parisienne', cursive;
  --font-display: 'Cormorant Infant', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-light);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1452px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-outline {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 129px;
  height: 56px;
  text-align: center;
}

.btn-outline img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.btn-outline span {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
}