html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
    /* border:1px red solid; */
}

header {
    font-family: "tt-modernoir", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "bebas-neue-semirounded", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #eee;
      margin: 20px;
  margin-left: 10%;
  margin-right: 10%;
}

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

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

.label1 {

    width: 100px;
    height: 100px;
    /*border: 1px red solid;*/
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0em;
    font-size: larger;
    background-image: linear-gradient(#a0c1b9, #706993);
    color: transparent;
    background-clip: text;

}

.label2 {

    width: 100px;
    height: 100px;
    /*border: 1px red solid;*/
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0em;
    font-size: larger;
    background-image: linear-gradient(#e4572e, #33658a 65%);
    color: transparent;
    background-clip: text;

}

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

.square-pita {
    width: 200px;
    height: 200px;
    margin: 10px;
    float: left;
    border-radius: 0px;
    padding: 1em;
}

.small_circle {

    width: 100px;
    height: 100px;

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

.medium_square {
    width: 220px;
    height: 220px;

    margin: 10px;
    float: left;
    border-radius: 20em;
    padding: 7em;
}

.rectangle {
    width: 340px;
    height: 150px;
    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;
}

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

.gradienttext {
    background-image: linear-gradient(#a0c1b9, #706993);
    color: transparent;
    background-clip: text;
}

.cat {
    background-image: url(images/patterns/04_deforge_life.png);
    background-repeat: repeat-y;
    background-size: 50px;
    background-color: #d3d0cb;
    /* background-attachment: fixed; */
}

/*/ / / TEXT / / /*/


h1 {
    float:right;
}

/* h2 {
    background-image: linear-gradient(#a0c1b9, #706993);
    color: transparent;
    background-clip: text;
    
} */
/* h3 {
    background-image: linear-gradient(red, blue);
    color: transparent;
    background-clip: text;
    
} */

h5 {}

p {
    color: #ffffff96;
}


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


header {
    color: #38175eb8;
   
    /* height:100px; */
}


nav {
    float: left;
    font-family: "bebas-neue-semirounded", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #eee;
    width:100%;
}

nav a {
    float: left;
    /* more on this later */
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    padding: 5px 10px;
    margin-right: 10px;
    text-decoration: none;
}

/* unvisited link */
nav a:link {
    color: #8e8f95;
    border-radius: 3px;
    text-decoration: none;
}

/* visited link */
nav a:visited {
    color: #8e8f95;
    border-radius: 3px;
}

/* mouse over link */
nav a:hover {
    color: #fff;
}

/* selected link */
nav a:active {
    color: #8e8f95;
    border-radius: 3px;
}




/*/ / / 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. */
  margin: 20px;
  margin-left: 10%;
  margin-right: 10%;
    /*Width and margin centers the contents */
    width:fit-content;
    margin: 0 auto;
   /* padding:3em; */
    /*Padding puts space inside the boxes providing 
room to breath for the type*/
    padding-left: 1em;
    padding-right: 1em;
}


main {

}

footer {
    /*Specific styles for just the footer. */

    clear: left;
    padding-top: 2em;
    color: #aaa;
}



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

/*Sets default links style*/
a:link {}

/*Sets default link mouseover style*/
a:hover {}

/*Sets default link down-click style*/
a:active {}

/*Sets default visited link style*/
a:visited {}

/* font-family: "tt-modernoir", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "tt-modernoir", sans-serif;
font-weight: 700;
font-style: normal; 

font-family: "bebas-neue-semirounded", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "novecento-sans-wide", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "novecento-sans-wide", sans-serif;
font-weight: 700;
font-style: normal;

font-family: "novecento-sans", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "novecento-sans", sans-serif;
font-weight: 700;
font-style: normal;

font-family: "novecento-sans-narrow", sans-serif;
font-weight: 700;
font-style: normal;
*/