
/* Global style */
/* The width and height properties (and min/max properties) includes content, padding and border */

@import url('https://fonts.googleapis.com/css?family=Chivo&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Chivo', sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  } 


  /* Remove the default link color and underline of the html hyperlink  */
  
  a {
    text-decoration: none;
    color: #fff; 
  }
  

  /* Set the value of list-style property to none to remove bullets */
  
  li {
    list-style: none;
  }


  .shadow {
    box-shadow: 0px 0px 8px 0px rgba(21, 17, 17, 0.71);
    border-radius: 2%;
  }
 
  .sectionsHeigh {
    min-height: 60vh;
  }
 
  /* Body Style */


  nav {
    background: rgba(0, 116, 255, 0.68);
    min-height: 12%;
    font-size: 1rem;
    position:  fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 8px 0px rgba(21, 17, 17, 0.71);
  }


  .navContainer {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
  }
 
 
  .navContainer li a {
    font-size: 2em;
  }

 main {
  width: 90%;
  margin: 0 auto;
 }

  section {
      color: #fff;
      text-align: center;  
  }



section p {
  color: #504f5d;
  line-height: 1.5;
  padding: 4%;
}

 img {
  width: 35%;
  height: 35%;
 }




 /* About style */
  .about {
    padding: 100px 0 0;
  }
 
  .about h1 {
    color: #504f5d;
  }

  .paddingGap {
    padding-top: 24%;
  }
 
 /* Work Experience style */


.workExperience {
  background-image: linear-gradient(#56aaffc7, #0a539dc7);
 }
 
 section h1 {
   padding: 30px 0;
 }
 .workExperience ul {
   margin-top: 10%;
 }
 .workExperience ul li {
   padding-bottom: 10px;
 }


 /* Goals Section style */

.goals {
  background-image: linear-gradient(#0c5eb2c7, #351111);
}

.goals .goalsContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 17px;
}

.goals i{
  font-size: 2.6em;
  margin: 29px;
}

/* Education Style */

#toEducation {
  margin-bottom: 20px;
}

.education {
  background-color: #37232e;
}

.education ul {
  margin: 30px 0 0 40px;
}
.education ul li {
  margin-top: 5px;
  text-align: left;
  list-style: circle;
}
/* Footer Style */


footer {
  height: 18vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #37232e;
  color: #fff;
}



.footer-main {
  width:80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.icons-social ul li a{
  color: #d1eeff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .3s;
}


.icons-social ul li a:hover {
  color: #fff;
}






/* Mediam queries for greater screen */


@media (min-width: 768px) {
   
  main{
    width: 100%;
  }

  .shadow {
    box-shadow: none;
  }


  img {
    width: 14%;
  }


  .paddingGap {
    padding: 0;
    margin: 20px 0;
  }
 

/* Style navigation */

  nav {
    background: #070707;
    height: 100vh;
    width: 7%;
    box-shadow: none;
    text-align: center;
    align-items: unset;
  }


  .navContainer {
    flex-direction: column;
    height: 50vh;
  }

  

  .scale {
    transition: transform ease .3s, color ease .3s;
  }
  

  .scale:hover {
    color: #dbe99d;
    transform: scale(1.2);
  }
  
  /* Home Style */

  .about {
    padding: 52px 0;
}
  #home p {
    font-size: 1.20rem;
    width: 50%;
    padding: 0;
    margin: 30px auto;
  }
  


/* Experience style  */

  #experience {
    background-image:  linear-gradient(#ff7d61, #f4654d);
    margin-bottom: 14px;
  }

.workExperience, .goals{
  background-image: none;
}

.workExperience ul, .education ul {
  margin-top: 0;
  display: inline-block;
  margin: 0 auto;
}
.workExperience ul li, .education ul li{
  font-size: 1.50em;
  margin-top: 5px;
  text-align: left;
  list-style: circle;
}



/* Goals Style */
#toGoal {
  background-image:  linear-gradient(#fe6d4e, #9f2041);
}

.goals i{
  margin: 50px;
}

/* Education Style */
.education {
  background-color: transparent;
}

.education ul li {
  margin: 20px;
}

#toEducation {
  background-image: linear-gradient(#a22142, #5d0f25);
}

 

footer {
   background-image: linear-gradient(#600e23, #342040);
}



}