@font-face {
    font-family: '18th Century Kurrent Start';
    src: url('font2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {

    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: sans-serif;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    box-sizing: border-box;
}

.top-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 1px;
    display: block;
}

.timer {
    font-family: 'PMingLiU-ExtB', 'PMingLiU', serif;
    font-size: 3.5rem;
    font-weight: 100;
    letter-spacing: 0px;
    font-variant-numeric: tabular-nums; 
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.bottom-text {
    font-family: 'PMingLiU-ExtB', 'PMingLiU', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555555;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .container {
        gap: 20px;
    }

    .timer { 
        font-size: 7.5vw; 
        letter-spacing: 1px;
    }

    .bottom-text { 
        font-size: 0.65rem; 
        bottom: 15px;
    }
}