
/*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;
        color: green;
    }

    #header {
        display: flex;

        h1 {
            margin-bottom: .5rem;
        }

        #header_content{
            align-self: center;
        }

    }

    @media only screen and (max-width: 600px){
        #linkHome {
            padding-bottom: 2rem;
        }
    }


    #wrapper{
        height: 100vh;

        @media only screen and (max-width: 600px){
            max-width: 20rem;
        }
    }
    
    body {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
