/* Custom site-wide styles */

/* Font faces */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(''), url('../fonts/inter-v12-latin-300.woff2') format('woff2'), url('../fonts/inter-v12-latin-300.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''), url('../fonts/inter-v12-latin-regular.woff2') format('woff2'), url('../fonts/inter-v12-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(''), url('../fonts/inter-v12-latin-500.woff2') format('woff2'), url('../fonts/inter-v12-latin-500.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(''), url('../fonts/inter-v12-latin-700.woff2') format('woff2'), url('../fonts/inter-v12-latin-700.woff') format('woff');
}

/* Base body styles */
body {
  padding-top: 80px;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* 404 Error page styles */
.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
  text-align: center;
  background-color: #000;
  color: #fff;
}
.error-container h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.error-container p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.error-container a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #1e90ff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}
.error-container a:hover {
  background-color: #1e90ff;
  color: #000;
}