.wood-frame {
   width: 660px;
   height: 630px;
   background-image: url(img/ma-num.png);
   background-size: cover;
   border: 10px solid #8B5E3C;
   border-radius: 10px;
   box-shadow: 10px 10px 10px #8B5E3C;
   display: flex;
   align-items: center;
   justify-content: center;
}

.card {
   width: 610px;
   height: 600px;
   background-image: url(img/ma-num.png)
   
   align-items: center;
   justify-content: center;
}
@font-face {
  font-family: 'Best-Spring'; /* Nom à utiliser dans CSS */
  src: url('C:\Users\Alain\Documents\Cours-SQL\Best-Spring/Best-Spring.ttf') /* Chemin vers la police */
  format('TrueType'); /* Format de la police */
}
/*Pour insérer une police dans un fichier CSS, vous pouvez utiliser la déclaration de font-face. Voici un exemple de comment le faire:
@font-face {
  font-family: 'NomDePolice'; /* Nom à utiliser dans CSS */
  src: url('chemin/vers/la/police.ttf') /* Chemin vers la police */
  format('truetype'); /* Format de la police */
}

body {
  font-family: 'NomDePolice'; /* Utilisez le nom de police */
}
Vous pouvez également inclure des liens vers des polices externes en utilisant le même format:
@font-face {
  font-family: 'NomDePolice';
  src: url('https://example.com/chemin/vers/la/police.ttf') /* Chemin vers la police en ligne */
  format('truetype');
}

body {
  font-family: 'NomDePolice';
}
*/