/*/ / / CONTAINER FOR THE WHOLE PAGE / / /*/



html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}


body {
    /*Set default fonts for the whole page*/
    font-family: "gyst-variable", sans-serif;
    font-variation-settings: "wght" 100;
    font-size: 1.4em;
        background-image: url('images/patterns/big-cloudy-sky.jpg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
}

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

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

.label {
    width: 150px;
    height: 150px;
    /*border: 1px red solid;*/
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
}

.square {
    width: 150px;
    height: 150px;
    margin: 8px;
    float: left;
    border-radius: 15px;
    padding: 0.7em;
}

.small_circle {

    width: 650px;
    height: 170px;

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

.medium_square {
    width: 220px;
    height: 220px;
    margin: 10px;
    float: left;
    font-family: "gyst-variable", sans-serif;
    font-variation-settings: "wght" 100;

    border-radius: 3em;
    padding: 1em;
}

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

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

.divide {
   
    
    margin: 3px;
    clear:left;
   
}


/* GENERAL BOX EFFECTS */

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

.whitetext {
    color: #fff;
}



/*/ / / TEXT / / /*/


h1 {
    font-size: 5.5em;
    font-family: "gyst-variable", sans-serif;
font-variation-settings: "wght" 900;
    font-style: normal;
    color:#382c4ab0 ;  
}

h2 {
    font-size: 2em;
    font-family: "gyst-variable", sans-serif;
font-variation-settings: "wght" 400;
font-style: normal;
color: #382c4ab0;
}






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





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


main {
    max-height: 2000px;
}

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

    clear: left;
    padding-top: 2em;
    font-family: "gyst-variable", sans-serif;
font-variation-settings: "wght" 400;
font-size: 1em;
    font-style: normal;
    color:#382c4ab0 ;
    
   
}



.large_squarefixed {
    width: 250px;
    height: 400px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 230px;
    background-image: url("images/cameron_pixel.png");
    background-attachment: fixed;
}

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

/*Sets default links style*/
a:link {
    font-family: "panel-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
color: black;
}

