/* 
// Custom but based on https://piccalil.li/blog/a-modern-css-reset/
*/
@font-face {
  font-family: "Theseasons";
  src: url("/fonts/theseasons.otf") format("truetype");
}
@font-face {
  font-family: "Britanny";
  src: url("/fonts/BrittanySignature.ttf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
  font: inherit; 
}
html,
body {
min-height: 100vh;
min-height: 100dvh;
font-size: 16px;
line-height: 1.15;
}
body {
  background-color: #f6f2e7;
}
.container {
  margin: 0 auto;
  max-width: 1140px;
}
.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Theseasons', sans-serif;
  font-size: 116px;
  text-transform: uppercase;
  color: #000;
  margin-top: 80px;
}
@media only screen and (max-width: 600px) and (min-width: 300px) {
  .title {
    font-size: 80px;
    padding: 0 5px;
  }
} 
.title--sub1:before {
  content: "";
  display: block;
  border-left: 1px solid #000;
  height: 50px;
  margin-left: 232px;
}
@media only screen and (max-width: 600px) and (min-width: 300px) {
  .title--sub1:before {
    margin-left: 160px;
  }
} 
.title--sub1 {
  align-self: center;
}
.title--sub2 {
  align-self: center;
  margin-top: -70px;
}
@media only screen and (max-width: 600px) and (min-width: 300px) {
  .title--sub2 {
    margin-top: -50px;
  }
} 
.title--sub2:after {
  content: "";
  display: block;
  border-left: 1px solid #000;
  height: 140px;
  margin-top: 10px;
  margin-left: 160px;
}
@media only screen and (max-width: 600px) and (min-width: 300px) {
  .title--sub2:after {
    margin-left: 110px;
  }
} 
.text {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  font-family: 'Britanny', Fallback, sans-serif;
}
.text--content {
  font-size: 64.8px;
  margin-left: 1px;
}
@media only screen and (max-width: 600px) and (min-width: 300px) {
  .text--content {
    font-size: 54.8px;
    margin-left: 1px;
  }
} 
.bb {
  display: flex;
  justify-content: center;
  padding: 0 25px;
}
.bb1 {
  content: "";
  border-bottom: 1px solid #000;
  margin-top: 2px;
  max-width: 700px;
  min-width: 200px;
  width: 700px;
  margin-left: -5px;
  padding: 0 25px; 
}
/* Reset: Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Reset: Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
/* Reset:  Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Reset:  Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* Reset:  A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Reset:  Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Reset:  Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Reset:  Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}