26 lines
548 B
CSS

@import './base.css';
body {
overflow: hidden;
}
@font-face {
font-family: a_OldTyper;
src: url('@/assets/a_OldTyper.ttf');
}
.center-message {
display: flex;
justify-content: center; /* горизонтальное центрирование */
align-items: center; /* вертикальное центрирование */
height: calc(100dvh - 100px);
text-align: center; /* центрирование текста */
}
@media (min-width: 1025px) {
.center-block-custom {
width: 700px;
margin: 0 auto;
}
}