* {
  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
}


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

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

.intro{
  margin: 0px;
  padding: 0px;
}

.intro2 {
  font-size:50px;
  margin-top: 0px;
  padding: 0px;
}

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

.body_content {
  margin-top: 6%;
  text-align: center;
  color: gray;
}

.full_stack {
  text-align: center;
}

.icons{
  margin: 5%;
  text-align: center;
  margin-right:0;
  margin-left: 0;
}

.img1 {
  margin-right: 1%;
}
.img2 {
  margin-right: 1%;
}
.img3 {
  margin-right: 1%;
}
.img4 {
  margin-right: 1%;
}
.img5 {
  margin-right: 1%;
}
.img6 {
  margin-right: 1%;
}
.img7 {
  margin-right: 1%;
}

.socials{
  margin: 5%;
  text-align: center;
  margin-right:0;
  margin-left: 0;
}

/* LINK STYLING BELOW */
a {
  color: #1EA1A1;
  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: 50px;
  /* 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 */
.body-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 10%;
  margin-bottom: 20%;
}
.profile-portrait{
  float: left;
  width: 300px;
  margin-right: 40px;
  border-radius: 50%;
}

.btn1 {
  margin-right: 1%;
}

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