/* Add your CSS styles here */

@font-face {
    font-family: 'big-shot'; /* Name you will use to reference the font */
    src: url('big-shot.ttf') format('truetype'); /* Path to your font file */
    /* You can include additional font formats (e.g., woff, woff2) for better browser compatibility */
}


body {
    font-family: big-shot, Courier New, Lucidia Sans Typewriter, sans-serif;
    background-color: #7b925b;
    color: #fecb18;
    margin: 5%;
}



h1, h2, h3, h4, h5, h6 {
        font-family: big-shot, Courier New, Lucidia Sans Typewriter, sans-serif;
}


a {
    color: #fecb18;
}

p {
    font-size: 24px;
}

