* {
  box-sizing: border-box;
}

body{
  /* Entire page style defaults */
  background-color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #282828;
  text-align: center;
}


/* NAVIGATION BAR */
.NAVIGATION {
  display: flex;
  width: 100;
  margin-left: 3%;
  margin-right: 3%;
}

/* navigation logo */
.page-header-item {
  flex: 0 1 200px;
}

/* navigation links */
.NAVIGATION li {
  flex-grow: 1;
  display: inline-block;
  margin-left: 15px;
}
nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  text-align: right;
}

/* list items for the nav bar */
.NAVIGATION ul{
  list-style-type: none;
  width: 100%;
}

.number{
  margin-bottom: 20%;
}

.body-container{
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 10%;
}

/* LINK STYLING BELOW */
a {
  color: #21ADA8;
  text-decoration: none;
}

a:visited {
  /* visited link */
  color: #078;
}
a:hover{
  /* color change when hovering over a link */
  color: #9EB;
}
a:hover :focus {
  /* No underlining when hovering over a link */
  text-decoration: none;
}
a:active {
  /* selected link */
  color: #489c79;
}


/* BUTTON STYLING AND INFO */
button {
  /* overwrites browser defaults and resets the border */
  border: none;
  /* takes the font from the outer container */
  font-family: inherit;
  /* styles the background color, font color, and text decoration (underline, etc.) of the button */
  background-color: #1EA1A1;
  color: white;
  text-decoration: none;
  /*adds spacing to the button (this will be discussed more in-depth later) */
  padding: 10px;
  border-radius: 59px;
  /* gives the button a bottom border with a width of 2px, a type of solid, and a color in RGBA format */
  border-bottom: 2px solid rgba(0, 0, 0, 0.6);
  transition-duration: 0.9s;
  transition-property: opacity;
}
button:hover, button:focus {
  /* lets the mouse appear as a hand when hovering over the button */
  cursor: pointer;
  /* reduces the opacity of the button to 80% */
  opacity: 0.8;
}

/* BODY OF PAGE */



/* footer */

.footer {
  position: fixed;
  left: 0;
  bottom: 15px;
  width: 100%;
  clear: both;
  display: flex;
  text-align: center;
  flex-direction: column;
}
.icon1{
  margin-right: 1%;
}
.icon2{
  margin-right: 1%;
}
