@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Raleway;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/raleway-latin-400-normal.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

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

body {
  min-height: 100vh;
  background-color: #f0eeeb;
}

.presentation {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  color: #ff5757;
  font-size: 6.25rem;
  margin-bottom: 0.375rem;
  font-family: 'Cormorant Garamond', Garamond, serif;
  font-weight: 400;
}

p {
  font-family: Raleway, sans-serif;
  font-weight: 400;
  color: rgb(92 63 63);
  font-size: 1.625rem;
  margin-bottom: 2rem;
}

.location {
  font-size: 1.125rem;
}

.location .icon,
.btn-whatsapp .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  fill: currentcolor;
  vertical-align: -0.125em;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5625rem;
  border: 1px solid #20b858;
  border-radius: 50px;
  color: #20b858;
  text-decoration: none;
  font-family: Raleway, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition:
    color 0.3s,
    background-color 0.3s;
}

.btn-whatsapp .icon {
  width: 1.375rem;
  height: 1.375rem;
}

.btn-whatsapp:hover {
  background: #20b858;
  color: #fff;
}

.btn-whatsapp:focus-visible {
  outline: 2px solid #20b858;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  h1 {
    font-size: 3.5rem;
  }
}
