* {
    font-family: sans-serif;
    color: white;
    padding: 0px;
    margin: 0px;
  }
  body {
    overflow-x: hidden;
  }
  #Home {
    background-image: linear-gradient(to bottom, rgb(73, 4, 55), rgb(7, 7, 69));
    background-size: cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  h1 {
    color: white;
    position: absolute;
    font-size: 50px;
    z-index: 3;
    line-height: 3.5em;
  }
  #Home img {
    position: absolute;
    bottom: 0px;
  }
  
  #Mountain {
    width: 100%;
    z-index: 4;
    pointer-events: none;
  }
  #moonIcon {
    top: 450px;
    right: 15%;
    z-index: 2;
  }

  /* all Icons */
  #apiIcon {
    top: 290px;
    right: 19%;
  }
  #bootstrapIcon {
    top: 290px;
    left: 16%;
  }
  #cssIcon {
    top: 190px;
    left: 45%;
  }
  #githubIcon {
    top: 290px;
    left: 30%;
  }
  #htmlIcon {
    top: 390px;
    left: 30%;
  }
  #javascriptIcon {
    top: 390px;
    right: 33%;
  }
  #jqueryIcon {
    top: 290px;
    left: 45%;
  }  
  #postgresqlIcon {
    top: 390px;
    left: 16%;
  }
  #powershellIcon {
    top: 190px;
    right: 33%;
  }
  #pythonIcon {
    top: 190px;
    right: 19%;
  }
 #reactIcon {
    top: 190px;
    left: 30%;
  }
  #reduxIcon {
    top: 190px;
    left: 16%;
  }
  #visualCodeIcon {
    top: 390px;
    left: 45%;
  }
  #wordpressIcon {
    top: 290px;
    right: 33%;
  } 

  @keyframes loadAnimation {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }


  

  