@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_slnt,wght.ttf") format("truetype");
  font-weight: 100 900;
}

:root {
  font-family: "Inter", sans-serif;

  --primary-400: #FFB800;
  --primary-200: #FFD873;
  --primary-100: #FFF1CC;
  
  --text-400: #000000; 
  --text-300: #2F2F2F; 
  --text-200: #4E4E4E; 
  --text-100: #7B7B7B; 

  --indent: 20px;

  --fs-m: 18px;
  --fs-l: 24px;
  --fs-xl: 32px;
  --fs-xxl: 42px;
  --font-height: 1.8;

  --header-footer-height: 60px;
}

p {
  line-height: var(--font-height);
  font-size: var(--fs-m);
}

@media only screen and (min-width: 1800px) {
  :root {
    --fs-xl: 40px;
  }
}

/* Responsive Container */

.responsive-container {
  width: calc(100% - 40px)
}

@media only screen and (min-width: 1200px) {
  .responsive-container {
    width: 75%;
    max-width: 1300px;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

footer {
  display: grid;
  place-items: center;
  height: var(--header-footer-height);
  margin-top: 100px;
}

@media screen and (min-width: 1024px) {
  footer {
    margin-top: 200px;
  }
}

footer .responsive-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

footer a {
  color: var(--text-200);
  text-decoration: none;
}

footer a:hover {
  color: var(--text-400);
}

/* Heading */
.heading {
  position: relative;
}

.heading h1 {
  color: var(--primary-400);
  font-weight: 600;
  font-size: var(--fs-xxl);
}

.heading img {
  width: 100px;
  position: absolute;
  left: -75px;
  bottom: -10px;
  z-index: -1;
}

/* Reset */
body {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

