/**************** Fonts *****************/

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@font-face {
  font-family: "Adigiana";
  src: url("../fonts/Saiyan-Sans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
  --primary: #a25b3b;
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --green: #228b22;
  --orange: #f0b90b;
  --purple: #8049c2;
  --yellow: #b2dc5c;
  --blue: #007fcc;
  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
}

*,
*:before,
*:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

h1 {
  font-size: 89px;
  line-height: 75px;
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: #ffffff;
  stroke: #ffffff;
  text-shadow: 0px 0px 10px #228b22;
  margin-bottom: 30px;
  padding-bottom: 40px;
  padding-top: 30px;
}

h2 {
  text-align: center;
  margin: auto;
  font-size: 55px;
  line-height: 60px;
  font-weight: bold;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 25px;
}

h3 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  stroke: #000;
  z-index: 1;
}

h4 {
  color: #fff;
  font-size: 25px;
}

p {
  font-size: 18px;
  line-height: 23px;
}

a {
  text-decoration: none;
  color: #000000;
}
a:hover{
  color: #fff;
}
h2 {
  text-align: center;
  margin: auto;
  font-size: 110px;
  line-height: 60px;
  font-weight: bold;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 25px;
}
picture {
  display: flex;
  margin-left: 10px;
}

@media only screen and (max-width: 63.9375rem) {
  h1 {
    /*font-size:50px;
        line-height:55px;*/
  }
}

@media only screen and (max-width: 700px) {
  h2 {
    font-size: 45px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 50px;
    line-height: 50px;
  }
  h1 {
    font-size: 48px;
    line-height: 75px;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: #ffffff;
    stroke: #ffffff;
    text-shadow: 0px 0px 10px #228b22;
    margin-bottom: 30px;
    padding-bottom: 40px;
    padding-top: 30px;
  }
}
