2026-03-22 01:39:16 +07:00

28 lines
598 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; /* центрирование текста */
}
.text-with-font {
font-family: a_OldTyper;
color: #bfa07d;
font-weight: 600;
letter-spacing: 2px;
line-height: 20px;
font-size: 22px;
}