* {
  /*
    - Wildcard formatting for entire page
    - Removing default values
  */
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}
nav {
  /* Styling the nav tag, and all children inside tag
    - Justify content for clarity
    - Displaying the elemnent as flex adds the UL horizontally
    - Align Center to move away from page edges
    - Minimum heigh added for spacing
    - Background color selected
  */
  justify-content: space-around;
  display: flex;
  align-items: center;
  min-height: 8vh;
  background-color: rgb(75, 75, 250);
}

hr {
  /* Styling for horizontal lines used to section off areas in resume
    -  
  */
  background-color: black;
  height: 1px;
  margin: 5px;
  border-style: none;
}

span {
  /*
    - Using the span tag will make text elements bold
  */
  font-style: italic;
  font-weight: bold;
}
/*
    - Styling for footer, includes name and IMG link to my LinkedIn page
  */
footer {
  margin-top: 100px;
  margin-bottom: 10px;
  margin-left: 5px;
  font-style: italic;
  text-align: center;
}
/*
    - Styling for footer image, negative bottom margin aligns with text better
  */
footer img {
  margin-bottom: -5px;
  tab-size: 100;
}

.logo {
  /* Styling for the "logo" Cloud Casey
    - Change to all uppercase
    - Added spacing between letters
    - Increase font size
    - Text color change
  */
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 20px;
  color: rgb(221, 221, 221);
}

.nav-links {
  /* The base nav-links class for the navigation bar
      - Displaying the elemnent as flex adds the UL horizontally
      - Justified content for clarity
      - Width is key here, set at 30% gives ample space between links
    */
  display: flex;
  justify-content: space-around;
  width: 35%;
}

.nav-links a {
  /* Styling all Anchor tags in nav-links class
    - No underline (text-decoration:none)
    - Added spacing between letters
    - Bold letters for clarity
  */
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 16px;
  color: rgb(221, 221, 221);
}

.nav-links li {
  /* Styling all List Items in nav-links class
    - No bullet points for List Items
  */
  list-style: none;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: rgb(221, 221, 221);
  transition: all 0.3 ease;
}

@media screen and (max-width: 1024px) {
  /*
    - As screen size gets smaller, the width of the nav bar changes to be wider. Preventing elements from being too close together
  */
  .nav-links {
    display: flex;
    justify-content: space-around;
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  /*
    - Setting up nav bar functionality with "burger" on mobile devices
  */
  html,
  body {
    overflow-x: hidden;
  }
  body {
    position: relative;
  }
  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 8vh;
    background-color: rgb(75, 75, 250);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  .nav-links li {
    opacity: 0;
  }
  .burger {
    display: block;
  }
}

.nav-active {
  transform: translateX(0%);
}

/*
  - Animations fading in links
*/
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/*
  -These three toggle lines animate an X over the burger to close
*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.resume-title {
  /* Resume Title
    - Displays name, just bigger!
    - Added margin top spacing away from Nav bar
    - Added margin bottom spacing away from contact information
  */
  font-size: 32px;
  margin-top: 15px;
  margin-bottom: 5px;
  color: rgb(75, 75, 250);
}
#symbol {
  font-size: 24px;
  margin-top: -5px;
}
.resume-header {
  /* Styling for Resume header (Name, email, phone, location)
    - UL for basic info
    - display horizontally
    - proper spacing between
    - remove bullets
    - margin added for spacing
    - CHANGE WIDTH % FOR SPACING BETWEEN ELEMENTS
  */
  display: flex;
  justify-content: space-between;
  width: 75%;
  list-style: none;
  margin-left: 5px;
  margin-bottom: -5px;
  margin-top: 25px;
}

.section-title {
  /* Style for title of a section (EG: Education, Skills, and Work Experience, 
      - Spaced out from other sections
      - All caps title
  */
  margin-top: 15px;
  margin-left: 5px;
  margin-bottom: 5px;
  font-size: 24px;
  text-transform: uppercase;
  color: rgb(75, 75, 250);
}

.section-header {
  /* Style for the header of a section (School and Grad year, Company name and employment duration)
      - Built using list items, and flex display to space horizontally
      - Titles of places and time period are bold
  */
  margin-left: 5px;
  margin-top: 5px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style: none;
}

.section-info {
  /* 
      - Information about experience and education are ULs
      - Margin left allows for disc symbol to be seen on-screen
  */
  margin-left: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  list-style: disc;
}
.section-info li {
  /* Style for each List Item in section information (Bullet pointed items) 
      - Margin added to bottom for space between bullet pointed items
  */
  margin-bottom: 5px;
}

.project-title {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 15px;
}

.project-desc {
  text-align: justify;
  margin-left: 25px;
  margin-right: 25px;
  margin-top: 5px;
}

.project-github {
  text-align: center;
}

.project-img {
  max-width: 30%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.project-img-aws {
  max-width: 50%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  align-items: center;
}

.index-img {
  max-width: 75%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.social-media-img {
  margin-bottom: -5px;
  tab-size: 100;
}

.bio-links {
  text-decoration: none;
}

.bio-links:hover {
  text-decoration: none;
  color: #fff;
  background-color: rgb(75, 75, 250);
}

.summary {
  width: 75%;
  margin-left: 5px;
  margin-bottom: -5px;
  margin-top: 5px;
}
.skills-intro {
  font-weight: bold;
  width: 50%;
  margin-left: 5px;
  margin-bottom: 5px;
  margin-top: 25px;
}
.skills-table {
  width: 100%;
  margin-left: 50px;
  margin-bottom: 5px;
  margin-top: 5px;
}

.job-title {
  font-weight: bold;
  margin-left: 5px;
  margin-bottom: 5px;
  font-size: 20px;
}
.job-summary {
  font-style: italic;
  margin-left: 10px;
}
