
/*Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&Courier+Prime&display=swap');

    /* Fonts */
    * {
        font-family: 'Courier Prime', monospace;
    }
    
    .font-sacramento{
        font-family: 'Sacramento', cursive;
    } 

    a {
        text-decoration: none;
    }

    img{
        width: 100%;
        height: auto;
    }

    a, h2, h1 {
        color: green;
    }

    h1{
        margin: 0;
    }

    .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32rem;
    margin: 1em;
    }

    body {
    margin: 0;
    margin-top: 2rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}