@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* 
font-family: "Libre Baskerville", serif;
font-family: "Libre Franklin", sans-serif; 
*/

:root {
  --primary: #e3001b;
  --secondary: #e3e3e3;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Libre Franklin", sans-serif;
  height: fit-content !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.container {
  padding-inline: 32px;
  margin-inline: auto;
  max-width: 1280px;
}
a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
button {
  all: unset;
  cursor: pointer;
}
img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
ul {
  list-style-type: none;
  padding-left: 0;
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: 540px;
  }
}
