:root {
  --red: rgb(232, 48, 48);
  --grey-dark: #4e4d4d;
  --grey-mid: #676767;
  --grey-light: #f5f5f5;
  --black: #000000;
  --white: #ffffff;
  --font-sm: clamp(0.75rem, 1vw, 0.875rem); /* min 12px, max 14px */
  --font-extra-sm: clamp(0.65rem, 1vw, 0.75rem); /* min 10px, max 12px */
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  display: block;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", sans-serif;
  color: var(--black);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

html,
body {
  max-width: 100%;
  height: 100%;
}

.title-container {
  width: 80%;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 4vh;
}

button {
  font-size: var(--font-sm);
  text-transform: uppercase;
}

.title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%; 
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
}

.page-link {
    color: rgba(33, 37, 41, 0.75);
}

.page-link:hover {
    color: var(--grey-dark);
}

.page-link:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.25);
}

.page-item.active .page-link {
    background-color: var(--red);
    border-color: var(--red);
}

a {
  color: var(--grey-mid);
}


.topBtn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: none;
  background-color: var(--red);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0px 0px 6px 0px #0000001a;
}

.topBtn:focus {
  outline: 2px solid black !important;  
  outline-offset: 2px !important;     
}

#snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  z-index: 9999;
}

.snowflake {
  position: absolute;
  top: -10px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}

@media (max-width: 768px) {
  .title-container {
    text-align: center;
  }
}

@media (min-width: 1920px) {
 .title-container {
    max-width: 1890px;
 }
 
}