/*
Copyright 2020 Jack J. Woehr
PO Box 51, Golden, CO 80402-0051
jwoehr@softwoehr.com
*/
/* 
    Created on : Jan 4, 2020, 3:50:43 PM
    Author     : jwoehr
*/
.grad_bg {
    background: rgb(255, 255, 255);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(206, 220, 231, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(206, 220, 231, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(206, 220, 231, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedce7', endColorstr='#596a72', GradientType=0);
    /* IE6-9 */
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
}

body {
    /*
    margin: 1em;
    border: 10px;
    */
    background-color: rgb(206, 220, 231);
    /* height: 100%; */
    font-family: sans-serif;
    font-size: x-large;
}

.cenimage {
    display: block;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.bigimage {
    display: flex;
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.thingy {
    height: 200px;
    width: 200px;
}

.prettypractice {
    font-family: cursive;
    font-size: x-large;
    font-weight: bold;
    align-content: center;
}

.flexy {
    display: flex;
    flex-wrap: wrap;
}