@font-face { 
  font-family: 'Albertus Nova'; 
  font-style: normal; 
  src: url(https://en.luxfero.su/fonts/AlbertusNova/AlbertusNova.otf) format('opentype'); 
} 

body {
    /* Заставляем body занять всю высоту экрана */
    height: 100vh; 
    margin: 0;

    /* Магия центрирования */
    display: grid;
    place-items: center; 
    
    /* Дополнительно: выравнивание строк текста внутри */
    text-align: center;
    font-family: Albertus Nova Light, sans-serif;
    font-size: 32px;

    background-color: black;
    color: white;
}
