@font-face {
    font-family: 'Jersey 25';
    src: url('fonts/Jersey25-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Jersey 25', sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #202020;
}
#countdown {
    font-size: 4em;
    color: #dfdfdf;
}
h1 {
    font-size: 4em;
    color: rgba(255, 255, 255, 0.4);
}
.fade-in {
    opacity: 0;
    animation: fadeIn 3s ease-in forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0.2;
    }
    40% {
        opacity: 0.4;
    }
    60% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}
#msg.fade-in {
    animation-delay: 1s;
}
#countdown.fade-in {
    animation-delay: 2s;
}