@charset "utf-8";

/*========= レイアウトのためのCSS ===============*/

#wrapper{
  
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
  color: #fff;
}
a{
  color: #fff;
}

/*========= particle js を描画するエリア設定 ===============*/

html,body{
  height: 100%;/*高さを100%にして描画エリアをとる*/
  
}

#particles{ 
 
  position:fixed;
  top:0;
  left: 0;
  z-index:0;/*描画を一番下に*/
  width: 100%;
  height: 100vh;
 
}
#particles-creation{ 
  
  
  position:absolute;
  top:0;
  left: 0;
  z-index:1;/*描画を一番下に*/
  width: 100%;
  height: 100vh;
  
}

#particles-skill{
  width: 100%;
  height: 100vh;
}
#particles-about{
  width: 100%;
  height: 100vh;
}
#wrapper{
  position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
  z-index: 0;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
  width:100%;
  height: 100%;
}