@font-face {
    font-family: 'Jersey 25';
    src: url('/fonts/Jersey25-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    font-family: 'Jersey 25', sans-serif;
    font-size: large;
    line-height: 1.5;
    --background-primary: #182534;
    --background-secondary: #172433;
    --bakground-secondary-transparent: rgba(23, 36, 51, 0.6);
    --borders: #FC4E60;
    --text: #ffffff;
    --text-highlight: #1dd2af;
    --links: #ffd700;
    --links-hover: #a5ff00;
    background-color: var(--background-primary);
    color: var(--text);
    letter-spacing: 0.05rem;
}
html,
body {
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
h1 {
    font-size: 4em;
}
