/* 전체 배경 */

body{
    margin:0;
    padding:0;
    font-family:'Pretendard', sans-serif;
    background:linear-gradient(135deg,#ff9a9e,#fad0c4);
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* 카드 */

.container{
    width:90%;
    max-width:420px;

    background:white;
    padding:40px;
    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

    text-align:center;
}

/* 제목 */

h1,h2{
    margin-bottom:25px;
    color:#ff4d6d;
}

/* 입력창 */

input,
select{
    width:100%;
    padding:14px;

    margin-top:10px;
    margin-bottom:20px;

    border:none;
    border-radius:12px;

    background:#f3f3f3;

    font-size:16px;
    box-sizing:border-box;
}

/* 버튼 */

button{
    width:100%;
    padding:15px;

    border:none;
    border-radius:14px;

    background:#ff4d6d;
    color:white;

    font-size:17px;
    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

button:hover{
    background:#ff1e4d;
    transform:translateY(-2px);
}

/* 질문 */

.question{
    text-align:left;
    margin-bottom:20px;
}

.question label{
    font-weight:bold;
    color:#444;
}

/* 상태 메시지 */

#status{
    margin-top:20px;
    color:#666;
    font-weight:bold;
}

/* 결과 점수 */

.score{
    font-size:70px;
    font-weight:bold;
    color:#ff4d6d;

    margin:20px 0;
}

/* 결과 메시지 */

.result-text{
    font-size:24px;
    color:#444;
}

/* 반응형 */

@media(max-width:480px){

    .container{
        padding:25px;
    }

    .score{
        font-size:55px;
    }
}