
html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}


body {
    /*Set default fonts for the whole page*/
    font-family: 'Young Serif', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    background-image: url(images/more-leaves.png);
}

main {
    background-color: #f3e3ed;
    margin-left:10%;
    margin-right:10%; 
    font-size: 1em ; /* default 16px */
    border: 2px solid #343434;
    padding: 14px 25px;
    }

div {
    font-size: .8em;
    background-color: #fff;
}

/*/ / / Headers and Paragraphs / / /*/

.label {
    width: 100px;
    height: 100px;
    border: 1px rgb(0, 0, 0) solid;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
}

.small_circle {

    width: 100px;
    height: 100px;

    margin: .5em;
    float: left;
    border-radius: 2.5em;
}

.medium_square {
    width: 220px;
    height: 220px;
border: #000000;
border-width: 1px;
    margin: 10px;
    float: left;
    border-radius: 2em;
    padding: 0.8em;
}

.medium_circle {
    width: 220px;
    height: 220px;
border: #000000;
border-width: 1px;
    margin: 10px;
    float: left;
    border-radius: 50%;
    padding: 0.8em;
}

.rectangle {
    width: 460px;
    height: 220px;
    margin: 10px;
    float: left;
    padding: 0.8em;
}

.large_square {
    width: 460px;
    height: 440px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    /* border-radius: 230px;*/
}

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

/* GENERAL BOX EFFECTS */

.shadow {
    box-shadow: 10px 10px 8px #888888;
}

.whitetext {
    color: #fff;
}

.cool {
    background-color: #e5d8da;
    color: #000000;
    border: 1px solid #7f7e7f;
    border-radius: 30%;
    padding: 14px 25px;
    text-align: center; 
    display: inline-block;
  }

  mark{
    background-color: #ffffff79;
    color: #000000;
  }

/*/ / / TEXT / / /*/


h1 {
text-align: center;
margin-top:10px;
padding-bottom: 10px;
border-bottom:2px solid #343434;
font-family: 'Young Serif', serif;
}

h2 {}

h5 {}

p {}


/*/ / / TOP NAVIGATION AREA / / /*/


header {
    
}

nav {}

nav a {}

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

header,
nav,
main,
footer {
    /*
This styles all three primary structures at once.
The comma means: this, this, and this get styled
the same way. */

    /*Width and margin centers the contents */
    width: 80%;
    margin: 0 auto;

    /*Padding puts space inside the boxes providing 
room to breath for the type*/
    padding-left: 1em;
    padding-right: 1em;
}


footer {
    /*Specific styles for just the footer. */
        font-size: .8em;
        clear: left;
        text-align: center;
        padding: 2em;
        color: #706c6c;
        border-top: 2px solid #353535; 
}



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

a:link {
    text-decoration: none ;
    color: #000000;
  }
  
  a:hover {
    text-decoration: underline;
    color: #353535;
  }
  
  a:visited {
    text-decoration: none;
    color: #000000;
  }
  
  a:active {
    text-decoration: none;
  }