@font-face {
    font-family: 'Unity Headline';
    src: url('assets/fonts/TCCC-UnityHeadline-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Unity Headline';
    src: url('assets/fonts/TCCC-UnityHeadline-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Unity Headline';
    src: url('assets/fonts/TCCC-UnityHeadline-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Unity Headline';
    src: url('assets/fonts/TCCC-UnityHeadline-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Unity Text';
    src: url('assets/fonts/TCCC-UnityText-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Unity Text';
    src: url('assets/fonts/TCCC-UnityText-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Unity Text', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Unity Text', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    color: #000;
}

.content {
    width: 100%;
    max-width: 100%;
    padding: 0px;
    box-sizing: border-box;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* For better mobile viewing */
@media (max-width: 768px) {
    .content {
        padding: 0px;
    }
}

.coming-soon {
    text-align: center;
}

.logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

h1 {
    font-family: 'Unity Headline', sans-serif;
    font-weight: bold;
    font-size: 3rem;
    letter-spacing: 2px;
}