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

    .text-center{
        text-align: center;
    }

    a {
        text-decoration: none;
        background-color: green;
        border-radius: 10px;
        padding: .5rem;
        color: white;
    }

    body {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;

        #wrapper {
            width: 20rem;
        }

        details{
            margin-top: 3rem;
        }
    }
