﻿@font-face {
    font-family: 'Coolvetica'; /* Define the font family name */
    src: url('fonts/coolvetica rg.otf') format('opentype'); /* Specify the path to your font file */
    /* If using .ttf: src: url('fonts/your-custom-font.ttf') format('truetype'); */
    font-weight: normal; /* Specify font weight if applicable */
    font-style: normal; /* Specify font style if applicable */
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

#canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#content {
    z-index: 1;
    color: white;
    font-size: 9em; /* Adjust font size as needed */
    font-family: 'Coolvetica', sans-serif; /* Use your custom font family */
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/* Mobile Styles */
@media (max-width: 767px) {
    #content {
        font-size: 4em; /* Adjust font size for mobile */
    }
}
