

html {
    box-sizing: border-box;
}

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

body {
    font-family: sans-serif; /* REPLACE WITH CUSTOM FONT */
    font-weight: 700;
    font-style: normal;
    background-color: #da874f;
    font-size: 1em;
    width: 85%; /* sets page margin */
    margin: 0 auto;
background-image: url(images/Mountian.jpg);

}

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

main {background-color: #f8ebaf; padding: 2em;
    
 } 

div { font-size: medium;  

}

h1 {
    margin-left: 10px; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* text-align: right; */
 
  text-shadow: 0 0 3px #b13e3e, 0 0 5px #f0ad86;

}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: #edb63fd2;
    /* border: 1px black solid; */
    border-radius: 5px;
    padding: 0.5em;
    float: left;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* float: left; */
}

.circle {
    width: 100px;
    height: 100px;
    margin: .5em;
    background-color: #da874f;  
    border-radius: 100px;
    padding: 2em;
    float: left;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.divide {
    /* BREAKS THE FLOAT */
    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: 1px 1px 30px 10px #edbd3a; 
}

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

.whitetext {
    color: #fff;
}

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

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



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

a:link {
    /*Sets default links style*/
    color: #a51717;
    text-decoration: none ; /* "none" =  no underline */
  }
  
  a:hover {
    /*Sets default link mouseover style*/
    color: #000000;
    text-decoration: underline;
  }
  
  a:visited {
    /*Sets default link down-click style*/
    color: rgb(210, 63, 63);
    text-decoration: none;
  }
  
  a:active {
    /*Sets default visited link style*/
    color: #fff;
    text-decoration: none;
  }
  

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

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

