html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
    /* border: 1px #999 dotted; */
}

/* CSS HEX */
/* --dutch-white: #f4e8c1;
--jasper: #c05746;
--dark-moss-green: #3e5622;
--space-cadet: #171738;
--cadet-gray: #8da1b9; */


body {
    font-family: "area-inktrap", sans-serif;
    font-weight: 400;
    background-color: #49455d;
    font-size: 1em;
    color: #000000;
    width: 80%;
    /* sets page margin */
    margin: 0 auto;
}



main {
    /* background-color:#5C566D; */
    padding: 2em;
    margin-bottom: 200px;
}

div {
    /* font-size: .5em; */
    /* background-color: #fff; */

}

h1 {
    margin-left: 10px;
    color: #f4e8c1;
    /* text-align: right; */
}

p {
    color: #ffffff;
    font-family: "area-inktrap", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: #f4e8c1;
    /* border: 1px black solid; */
    border-radius: 5px;
    padding-left: 0.5em;
    float: left;
    /* float: left; */
}

.big-square {
    width: 40%;
    height: 40%;
    margin: 5px 20px 10px;
    margin-top:5px;
    background-color: #fff;
    /* border: 1px black solid; */
    border-radius: 15px;
    /* padding-left: 0.5em; */
    font-size: 5em;
    font-family: "area-inktrap", sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #f4e8c1;
    line-height:1.2em;
    float: left;
    /* float: left; */
}

.short-box {
    height:50px;
}

.medium-square {
     width: 150px;
    height: 150px;
    margin: 10px;
    background-color: #f4e8c1;
    /* border: 1px black solid; */
    border-radius: 5px;
    padding: 0.6em .5em 0.6em 0.2em;
    font-size: 3em;
    float: left;
    /* float: left; */
}

.small-square {
    width: 50px;
    height: 50px;
    margin: 10px;
    background-color: #f4e8c1;
    border-radius: 5px;
    padding: 0.5em;
    font-size: 0.75em;
    line-height:15px;
    float: left;
}

.circle {
    width: 100px;
    height: 100px;
    margin: .5em;
    background-color: #000000;
    border-radius: 100px;
    padding: 1em;
    font-size: 1.5em;
    float: left;
}

.big-circle {
    width: 250px;
    height: 250px;
    /* margin: .5em; */
    background-color: #000000;
    border-radius: 50%;
    padding-left: .5em;
    /* padding-top: .2em; */
    font-size: 8em;
    float: left;
    line-height:1.2em
}

.divide {
    /* BREAKS THE FLOAT */
    margin-top: 10px;
    clear: left;
    height: 10px;
}

/* GENERAL BOX EFFECTS */

.no-box {
    background-color: #ffffff00;
    color: #f4e8c1;
    /* the last two numbers in the color are opacity = 00 */
}

.shadow {
    box-shadow: 10px 10px 4px 12px #38354f;
}
.small-shadow {
    box-shadow:10px 10px 4px 4px #38354f;
}

.line1 {
    border: 2px #000 solid;
}

.white-text {
    color: #fff;
}

.square,
.medium_square,
.large_square,
.rectangle,
.small_circle {
    font-size: 30px;
}

.bigger-font {
    font-size: 4em;
}


/*/ / / TOP NAVIGATION AREA / / /*/
/*/ / / Style Appropriate to your design / / /*/

header {}

nav {
    margin-bottom: 2em;
    margin-left: .5em;
}

nav a:link {
    color: #ffffff;
}

nav a {}


/*/ / / PAGE SECTIONS / / /*/

main {
    /*This adds styles to just the main content area. */
}

footer {
    /*Specific styles for just the footer. */
    font-size: .8em;
    clear: left;
    padding-top: 2em;
    color: #aaa;
}



/* / / / REGULAR PAGE LINKS / / / */

a:link {
    /*Sets default links style*/
    color: red;
    text-decoration: none;
    /* "none" =  no underline */
}

a:hover {
    /*Sets default link mouseover style*/
    color: #000;
    text-decoration: underline;
}

a:visited {
    /*Sets default link down-click style*/
    color: red;
    text-decoration: none;
}

a:active {
    /*Sets default visited link style*/
    color: #fff;
    text-decoration: none;
}




/* / / / BOTTOM OF PAGE / / / */

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: rgb(203, 203, 203);
    padding: 1em;
    /* All four side the same */
}


/* Adobe Fonts 
 font-family: "area-inktrap", sans-serif;
font-weight: 400;
font-style: normal;
font-family: "area-inktrap", sans-serif;
font-weight: 400;
font-style: italic;
font-family: "area-inktrap", sans-serif;
font-weight: 700;
font-style: normal;
font-family: "area-inktrap", sans-serif;
font-weight: 700;
font-style: italic;
*/