/* colors here */
/* --coquelicot: #f63e02;
--eggshell: #f3efe0;
--plum: #9c528b;
--satin-sheen-gold: #cba135;
--black: #000000; */

/* fonts here */
/* font-family: "paradroid-mono-soft", sans-serif;
font-weight: 700;
font-style: normal; */
/* font-family: "basset-four", sans-serif;
font-weight: 400;
font-style: normal; */

html {
    box-sizing: border-box;
}

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


body {
    font-family: "paradroid-mono-soft", sans-serif;
    font-weight: 700;
    font-style: normal;
    background-color: #cba135;
    font-size: 1em;
    width: 80%;
    /* sets page margin */
    margin: 0 auto;
}

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

main {
    padding: 2em;
    /* margin: 20px 100px 100px; */
}

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

}

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

h5 {
    font-family: "basset-four", sans-serif;
    font-weight: 800;
    font-size: 500px;
    font-style: normal;
    opacity: 50%;
}

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

.circle {
    width: 150px;
    height: 150px;
    margin: .5em;
    background-color: #f3efe0;
    border: 2px black solid;
    border-radius: 100px;
    padding: 1em;
    float: left;
}

#image-box {
    width: 250px;
    height: 340px;
    background-image: url('images/padlock.png');
    /* background-size: cover; */
    margin: 30px;
    background-size: 200px;
    background-position: center;
    background-repeat: no-repeat;
    text-shadow: 4px 3px 4px #f63e02;
    padding-top: 190px;
    box-sizing: border-box;
    float: left;
    text-align: center;
}

.divide {
    margin-top: 10px;
    clear: left;
    height: 10px;
}

/* GENERAL BOX EFFECTS */

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

/* .shadow {
    box-shadow: 10px 10px 8px #000000;
} */

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

.whitetext {
    color: #fff;
}

.square,
.medium_square,
.large_square,
.rectangle,
.circle {
    font-size: 30px;
    box-shadow: 10px;
}

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


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

/* header {} */

/* nav {} */

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