@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/MazzardH-ExtraLight.woff2') format('woff2'),
        url('fonts/MazzardH-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/MazzardH-Thin.woff2') format('woff2'),
        url('fonts/MazzardH-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard L';
    src: url('fonts/MazzardL-Bold.woff2') format('woff2'),
        url('fonts/MazzardL-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: "Mazzard L";
    font-weight: 200;
    background: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-size: 30px;
}
a {
    color: #fff;
    text-decoration: none;
    display: block;
    
}
.container {
    max-width: 900px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Stacks everything vertically */
    align-items: center;    /* Keeps everything centered horizontally */
}
img {
    max-width: 80%;
    height: auto;
    display: block;
}

