@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Light.woff2") format("woff2"), url("fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Medium.woff2") format("woff2"), url("fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.woff2") format("woff2"), url("fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2"), url("fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Material Symbols Outlined";
  src: url("/fonts/MaterialSymbolsOutlined.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 0, "opsz" 24;
  font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.5;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background: linear-gradient(36deg, #222f3e, #090909, #222f3e);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  font-family: "Montserrat", sans-serif;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  margin: 0;
  padding: 0;
}

body * {
  box-sizing: border-box;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-weight: 400;
  margin-top: 36px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: fixed;
  width: 100%;
  z-index: 10;
  gap: 24px;
}

.main-content {
  text-align: center;
}

.main-content__title {
  font-size: 40px;
  font-weight: 500;
  color: #e74c3c;
  text-shadow: #ffffff 1px 0 2px;
}

.main-content__description {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-top: 16px;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

nav li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s ease;
  position: relative;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

nav li a::before {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  width: 0;
  bottom: 0;
  border-top: solid 2px #e74c3c;
  z-index: 1;
  transition: 0.3s ease;
  transition: 0.3s;
}

nav li a:hover::before,
nav li a.active::before {
  width: 100%;
}

nav li:last-child a::before {
  border-color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
