
/*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
    }

    h2{
        margin-bottom: .5rem;
    }

    body {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;

        #wrapper{
            max-width: 50rem;
            align-content: center;
            height: 100vh;

            @media only screen and (max-width: 600px){
                min-width: 20rem;
            }
        }

        #content{
            display: grid;
            column-gap: 40px;
            ;

            @media only screen and (min-width: 1000px){
                grid-template-columns: auto auto auto;
            }
        }

        #personal, #creative, #other{
            border: 2px solid green;
            border-radius: 10px;
            padding: 10px;
            margin: 10px;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        
    }
