/*Basic styles that will apply to EVERY page*/

:root{
    --bg-primary: #333;
    --bg-dark: #222;
    --bg-light: #444;
    --bg-secondary: #777;
}


/*
 * Base structure
 */
html,
body {
    height: 100%;
    margin: 0;
    background-color: var(--bg-primary);
    font-family: 'Nunito', sans-serif;
}

body {
    color: #fff;
    text-align: center;
    text-shadow: 0 .05rem .1rem rgba(0,0,0,.5);
}
.site-wrapper {
    background-image: url('images/blurcode.jpg');
    -webkit-box-shadow: inset 0 0 5rem rgba(0,0,0,.5);
    box-shadow: inset 0 0 5rem rgba(0,0,0,.5);
    margin-top: 0;
    width: 100%;
    height: min-content;
    min-height: 100%; /* For at least Firefox */
    display: flex;
    flex-flow: column;

}

/* buttons */
.btn {
    display: inline-block;
    font-weight: bold;
    color: white;
    padding: .75rem 1.25rem;
    background-color: rgb(138, 138, 138);
    text-decoration: none;
    border-radius: 4px;
}

.btn:hover {
    background-color: rgb(192, 192, 192);
}

/* */
.transparent-block{
    background-color: rgba(0,0,0,0.5);
    padding: 30px 50px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.card{
    background-color: var(--bg-dark);
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 5px;
}
.card-light{
    background-color: var(--bg-secondary);
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 5px;
}

input{
    background-color: #111;
    border-color: var(--bg-primary);
    color: #eee;
}

@media (min-width: 40em) {
    /* Have some margin for page content */
    .masthead {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }
}

@media (min-width: 62em) {
    .masthead,
    .mastfoot{
        width: 49rem;
    }
}