/* app/styles/global.css */
body {
  background-color: #aaa9a9;
}
@font-face {
  font-family: Archivo;
  src: local("Archivo-Regular"), url(/fonts/Archivo-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Archivo;
  src: local("Archivo-SemiBold"), url(/fonts/Archivo-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Archivo;
  src: local("Archivo-Bold"), url(/fonts/Archivo-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Archivo;
  src: local("Archivo-Italic"), url(/fonts/Archivo-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: Archivo;
  src: local("Archivo-SemiBoldItalic"), url(/fonts/Archivo-SemiBoldItalic.ttf) format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: Archivo;
  src: local("Archivo-BoldItalic"), url(/fonts/Archivo-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: Archivo;
  src: local("Archivo-Medium"), url(/fonts/Archivo-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Archivo;
  src: local("Archivo-MediumItalic"), url(/fonts/Archivo-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:-moz-focusring {
  outline: auto;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: #8fc2d7;
  border-radius: 8px;
}
.error-page {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #0073a4;
}
.error-content {
  width: 420px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.error-icon {
  width: 400px;
}
.error-link {
  color: #005072;
  font-weight: 600;
}
