@font-face {
    font-family: 'UzuraFont';
    src: url('fonts/uzura.ttf') format('truetype');
}

body {
    font-family: 'UzuraFont', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    padding: 0 20px;
}

h1 {
    font-size: 6em;
    transition: color 1s ease;
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

h2 {
    font-size: 3em;
    color: black;
    margin-top: 30px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 4em;
    }

    h2 {
        font-size: 2em;
    }
}