:root{
    --main-grey: grey;
    --main-orange: orange;
  }
  
  *{
    margin: 0;
    padding: 0;
  
  }
  
  nav{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    border: 1px solid black;
    height: 40px;
    align-items: center;
    background-color: var(--main-orange);
    position: fixed;
    top: 0;
  }
  
  #welcome-section{
    text-align: center;
    background: var(--main-grey);
    height: 100vh;
    margin-top: 40px;
  }
  
  #logo{
    width: 10vw;

  }

  a{
    text-decoration: none;
    color: black;
    margin: 10px;
    font-size: 2.5vh;
  }
  
  h1{
    padding-top: 30vh;
    font-size: 8vh;
  }
  
  #projects{
    width: 100%;
    height: auto;
    background-color: var(--main-orange);
    text-align: center;
  }
  
  h2{
    padding-top: 50px;
  }

  #projectsLinks{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  #label-pizzanote{
    margin-top: 40px;
  }

  #imgQuizz, #imgCalculatrice, #imgRandomQuoteMachine, #imgPizzanote{
    width: 30vw;
    height: auto; 
    border: 1px solid black;
    margin-top: 10px;

  }
  
  #contact{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--main-grey);
    text-align: center;
    padding-top: 30vh;
  }
  
  #github-link, #linkedin_link, #freecodecamp-link{
    margin-top: 10vh;
  }



  #freecodecamp_link img{
    width: 17vw;
  }

  @media(max-width:800px){
    #logo{
      width: 25vw;
    }
  
    #imgCalculatrice, #imgQuizz, #imgRandomQuoteMachine, #imgPizzanote{
    width: 80vw;
    border: 1px solid black;
    justify-content: space-between;
    }

    #freecodecamp_link img{
      width: 40vw;
    }
  
  }  