body {
    font-family: Arial, sans-serif;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f8f9fa;
  }
  
  .logo {
    font-size: 24px;
  }
  


  .menu-link {
     cursor: pointer; 
  }
  
  #question-area {
     text-align:center; 
     padding-top :100px; 
  }
  
  .choice-btn {
    display: block;
    width: 350px;
    height: 50px;
    margin: 15px auto;
    border-radius: 5px;
    border: none;
    background-color: rgba(224, 75, 180, 0.486); /* 이 부분이 색상을 지정하는 부분입니다 */
}

.result-image {
    max-width: 100%;
    height: auto;
}


.skip-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: white;
    color: black;
    cursor: pointer;
    border-radius: 50%;
    width: 19px;
    height: 19px;
    text-align: center; /* 텍스트 중앙 정렬 */
    padding: 0; /* 패딩 제거 */
    line-height: 20px; /* 텍스트를 버튼 중앙에 위치시키기 위한 설정 */
    font-size: 11px; /* 폰트 크기 설정 */
    font-weight: bold; /* 폰트 두께 설정 */
}






/* Progress Bar */
#progress-container {
    width: 80%;
    height: 20px;
    background-color:#eee ;
    margin:auto ;
}
#progress-bar{
     height:100% ;    
     width :0% ;       
     background-color:#fa7ed5 ;  
}
#retry-button {
    display: block;
    width: 100px;
    height: 40px;
    margin: 20px auto;
    background-color: #69abee;
}



@media screen and (max-width: 480px) {
    /* Apply styles for screens smaller than or equal to 480px */

    #question-area {
        padding-top :50px; 
    }


   #progress-container {
       width: 90%;
   }

   #retry-button {
       width: 80px;
       height: 30px;
   }


   .skip-button {
    width: 25px;
    height: 25px;
    line-height: 25px; /* 텍스트를 버튼 중앙에 위치시키기 위한 설정 */
    font-size: 14px; /* 폰트 크기 설정 */
}
}