
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;}
  
  header nav{
    display: flex;
  }
  
  header h1{
    text-align: center;
    padding: 5px;
  }
  #jonathanPicture{
    float: right;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px;
   
    width: 18%;
  }
  #navList a{
    text-decoration: none;  
  }
  header a:hover{
    background-color: orange;
  }
  header p{
    padding: 5px;
    margin-left: 5px;
    font-family: Menlo, monospace;
    font-size: 15px;
    font-weight: bold;
  }
  header li{
    margin-bottom: 5px;
    border: 2px solid blue;
    border-radius: 10px;
  }
  #navList{
    
    display: flex;
    grid-auto-flow: row;
    list-style: none;
    grid-gap: 24px;
    margin:0 auto;
    align-items:center ;
    
  }
  header li:last-child {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  header {
   background-color:  #fbeb24;
    color: #1f2638;
    text-decoration: none;
    box-shadow: inset 0 -1px 0 hsla(0, 0%, 100%, 0.4);
    margin-bottom: -10px;
    position: sticky;
    top: 0;
  }
  
  /* main */
  main {
    background-color: #1d203a;
  }
  main div{
    color: white;
    margin-left: 5px;
  }
  main #aboutMe p{
    margin-top: 10px;
    font-size: 15px;
    margin-left: 5px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-left: 10px;
    font-family: 'Open Sans', sans-serif;
  }
  
  main #aboutMe li{
    font-family: Menlo, monospace;
    margin-left: 15px;
    padding-top: 10px;
    
  }
  main ul {
  list-style-type: circle;
  padding-left: 10px;
  }
  .innerContainer span{
    font-weight: bold;
    color: lightgoldenrodyellow;
  }
  .innerContainer p{
    font-family: 'Open Sans', sans-serif
  }
  
  h2{
   font-family: Menlo, monospace;
    padding-left: 10px;
    padding-top: 20px;
  }
  h3{
    font-family: Menlo, monospace;
    color: lightblue;
    padding-top: 10px;
  }
  
  #experiencesIHad p{
    font-family: 'Open Sans', sans-serif;
    padding-left: 10px;
    display: inline-block;
    vertical-align: top;  
    margin-right: 10%;
    padding: 20px;
    width: 40%;
  }
  #experiencesIHad h3:first-child {
    margin-top: 20px;
  }
  #eastbournePicture{
    width: 29%;
    margin:0 auto;
    float: right;
    text-align: center;
    overflow: hidden;
    margin-right: 10px;
    margin-top: 10px;
  }
  #eastbournePicture img{
    width: 250px;
  }
  .stacksContainer {
    background-color: yellow;
    display: flex;
    justify-content: space-evenly;
    align-items: center;  
    border: 2px solid orange;
    float: right;
  }
  .mainContainer{
    margin-top: 30px;
    margin-right: 10px;
    margin-bottom: 12px;
    width: 28%;
    float: right;
    text-align: center;
     
  }
  
  .img {
    border: 1px solid black;
    margin: 5px;
    width: 16%;
  }
  .images{
    width: 21%;
    float: right;
    overflow: hidden;
    margin-right: 10px;
    text-align: center;
  }
  .images img{
    width: 250px;
  }
  /* #jogoDaVelhaGif figcaption{
    margin-bottom: 10px;
  } */
  
  .innerProject a{
    color: royalblue;
  }
  .innerProject a:hover{
    background-color: orange;
  }
  
  /* footer */
  footer ul {
    
    list-style: none;
    display: flex;
    grid-auto-flow: row;
    grid-gap: 24px;
    justify-items: center;
    margin: auto;
  }
  
  
  
  @media (min-width: 100px) {
    ul {
      grid-auto-flow: column;
    }
  }
  
  footer a {
    color: #1f2638;
    text-decoration: none;
    box-shadow: inset 0 -1px 0 hsla(0, 0%, 100%, 0.4);
  }
  
  footer a:hover {
    box-shadow: inset 0 -1.2em 0 hsla(0, 0%, 100%, 0.4);
  }
  
  footer li:last-child {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  
  footer li:hover ~ li p {
    animation: wave-animation 0.3s infinite;
  }
  
  /* below is just for demo styling */
  footer{
     background-color: #fbeb24;
  }
  footer div {
    display: flex;
    height: 10vh;
    width: 100%;
    
    line-height: 1.3;
    font-family: Menlo, monospace;
  }
  
  @keyframes wave-animation {
    0%,
    100% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(20deg);
    }
    75% {
      transform: rotate(-15deg);
    }
  }
  