:root {
  --main-color: #8dcfef;
  --accent-color: #26353c;
  --bg-color: #f7f9fb;
  --gradient-color: linear-gradient(145deg, rgb(141, 207, 239), rgb(136, 205, 246), rgb(87, 186, 219));
}

@font-face {
  font-family: "Frank Ruhl Libre";
  src: url("../fonts/FrankRuhlLibre-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.accent-font {
  font-family: "Frank Ruhl Libre";
  font-weight: 500;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
  font-style: normal;
}
h1 {
  font-size: clamp(2.188rem, 5vw + 1rem, 3.5rem);
}
.padding-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
a {
  color: #000;
}
a:hover {
  color: #212121;
  text-decoration: none;
}
.container {
  max-width: 1280px;
}
.home-action-btn {
  border-radius: 2px;
  height: 60px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  border: 3px solid;
  border-image-slice: 2;
  font-weight: 500;
  padding: 10px 40px;
  background: #000;
  border-image-source: linear-gradient(to right, #8dcfef, #f1f1f1, #8dcfef, #f1f1f1, #8dcfef);
  box-shadow: 0 0 20px #8dcfef;
}
.home-action-btn:hover {
  color: #fff;
}
ul > li {
  margin-bottom: 0.8rem;
}
a:focus-visible,
.btn:focus-visible,
button:focus-visible,
.focus-style-on-dark-bg:focus-visible {
  outline: 2px solid #e8c501;
  outline-offset: 3px;
}
.focus-style-on-light-bg:focus-visible {
  outline: 2px solid #0015fa;
  outline-offset: 3px;
}
button:hover,
a:hover {
  outline: none;
}
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background-color: #fff;
  color: #000;
}

.skip:focus-visible {
  position: fixed;
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  padding: 8px;
  z-index: 1000;
  border-radius: 4px;
  border: 1px solid #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  outline-offset: 3px;
}
hr {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
