

html {
    box-sizing: border-box;
}

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

font{
  font-family: "rollerscript-rough", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: sans-serif; /* REPLACE WITH CUSTOM FONT */
    font-weight: 700;
    font-style: normal;
    background-color: #f08e7326;
    font-size: 1em;
    margin: 20px 70px 20px 70px;
    background-image: url('images/clouds3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

nav {
  height: 3em;
  padding-top: 40px;
  padding-right: 50px;
  padding-left: 50px;
  border-radius: 15px 50px 15px 50px;
  /* two values */
  width: auto;
  height: 5em;
  letter-spacing: 3px;
  font-size: 1.25em;
  font-weight: 800;
  background-color: #7a560f;
}

/* unvisited link */
nav a:link {
  color: white;
  background-color: #F08E73;
  border-radius: 7px 17px;
  text-decoration: none;
  padding: 6px;
}

/* visited link */
nav a:visited {
  color: #F08E73;
  background-color: white;
  border-radius: 6px;
}

/* mouse over link */
nav a:hover {
  color: #F08E73;
  background-color: white;
}

/* selected link */
nav a:active {
  color: rgb(255, 255, 255);
}

main {
    background-color: #f1cfc6;
    padding: 7%;
    border-radius: 50px 15px 50px 15px;
    margin: 1px 5px 70px 5px;
 } 

div {
  font-size: 1.25em;
}

h1 {
    margin-left: 10px;
    font-family:"rollerscript-rough";
    color:#7a560f;
    /* text-align: right; */
}

h4 {
  font-family: "rollerscript-rough";
  color:#7a560f;
}

.square {
    width: 125px;
    height: 125px;
    margin: 10px;
    background-color: #fff;
    font-family: "rollerscript-rough";
    border-radius: 5px;
    padding: .1em .5em .75em .5em;
    float: left;
}

.circle {
    width: 125px;
    height: 125px;
    margin: .5em;
    background-color: #fff;  
    font-family: "rollerscript-rough";
    border-radius: 100px;
  padding: .5em .5em .75em 1em;
    float: left;
    justify-content: "center";
}

.circle2 {
  width:250px;
  height:250px;
  margin: .5em;
  background-color: #fff;  
  font-family: "rollerscript-rough";
  border-radius: 250px;
  padding: .5em .5em .75em 1em;
  float: left;
  justify-content: "center";
}

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

/* GENERAL BOX EFFECTS */

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

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

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

.line1 {
    border: 2px #7a560f solid;
}

.line2 {
    border: 2px #F08E73 solid;
}

.whitetext {
    color: #fff;
}

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

.circle {
    font-size: 30px;
}

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

/* / / / 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: #7a560f;
    color: rgb(255, 254, 254);
    padding: 1em;
    font-size: .8em;
    clear: left;
 }