		*{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

body {
    margin: 20px;
    font-family: "Helvetica neue",Roboto;
    font-weight: 400;
    font-size: 16px;
    color: #424242;
    opacity: 1;
    transition: opacity 1s ease;
  }


.about-text{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* ← 중앙 정렬의 핵심 */
  display: flex;
  align-items: center;
  font-size: 20px;
  gap: 10px;
}


#instaSelect {
  width: 100px;
  font-size: 17px;
}


.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
  }

   #pageWrapper {
    opacity: 1;
    transition: opacity 1.5s ease;
  }

  #pageWrapper.fade-out {
    opacity: 0;
  }






@media screen and (max-width: 768px) {

body {
    font-family: "Helvetica neue",Roboto;
    font-weight: 400;
    
  }


  






