/* main.css */

* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /*
    -----------------------
    V A R I A B L E S
    */
  --primary-color: #2b2b2b;
  --secondary-color: #faebd7;

  --container-width: 1000px;
  --gap: 2rem;
  --border-radius: 5px;

  font-size: 1rem;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

html {
  background-color: var(--secondary-color);
  color: var(--secondary-color);
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  position: relative;
}

h1 {
    font-size: 3rem;
    line-height: 3rem;
    font-weight: 700;
}

.center {
    background-image: url('/lavender.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    height: 100vh;
  align-items: center;
    justify-content: center;
}