/** **

Global styles for Tiffany Auphan theme

** **/
/** Fonts **/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("../fonts/Bochan.otf");
.lato {
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.bochan {
  font-family: "Bochan", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/** Colors **/
/** Set up **/
* {
  margin: 0;
  padding: 0;
}

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

body {
  font-size: 1rem;
  font-family: "Lato";
  color: #3A2A1A;
  background-color: #F3F1EA;
  font-smooth: antialised;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.blur-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  background-image: url("../img/blur.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  margin: 0 5em;
}
@media screen and (max-width: 920px) {
  .container {
    margin: 0 1.25em;
  }
}

main .container > div {
  margin-bottom: 6em;
}
@media screen and (max-width: 720px) {
  main .container > div {
    margin-bottom: 3.75em;
  }
}

.full-bleed {
  margin: 0 -5em;
}
@media screen and (max-width: 920px) {
  .full-bleed {
    margin: 0 -1.25em;
  }
}

.text-center {
  text-align: center;
}

h1 {
  font-family: "Bochan";
  font-size: 2.5rem;
  font-weight: normal;
}

h2 {
  font-family: "Bochan";
  font-size: 2rem;
  font-weight: normal;
}

h3 {
  font-size: 1.875rem;
  font-weight: 900;
}

h4 {
  font-weight: 400;
}

h5 {
  font-size: 1rem;
  font-weight: 400;
}

.accent-button, input[type=submit] {
  background-color: #FFBD4D;
  border-radius: 0 1.66em 1.66em;
  padding: 1.1em;
  font-size: 1.125rem;
  color: #3A2A1A;
  text-decoration: none;
  display: inline-block;
}

.central-cta {
  display: block;
  text-align: center;
  margin-top: 3.75em;
}