@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

body {
  font-family: 'Inter', sans-serif;
}

.thumbnail-img {
  border: 2px solid black;
  border-radius: 15px;
  width: 99%;
}

.nav-item {
  text-decoration: none;
  color: black;
  padding: 8px 15px 8px 15px;
  margin-right: 5px;
  background-color: #f1f1f1;
  border-radius: 15px;
}

.nav-item:hover {
  background-color: #d1d1d1;
  font-weight: bold;
}

.nav-item:focus, .current {
  background-color: black;
  color: white;
  font-weight: bold;
}

.current:hover {
  background-color: black;
  color: white;
  font-weight: bold;
}

.card {
  text-decoration: none;
  width: 100%;
  padding: 1em;
  background-color: #f1f1f1;
  border: 2px solid black;
  border-radius: 15px;
}

.card:hover {
  border-right: 5px solid black;
  border-bottom: 5px solid black;
}