#check {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
    border: 2px solid #000;
    background: #fff;
    border-radius: 5px;
    padding: 30px 20px;
}
#start-screen {
    text-align: center;
}
#check h1 {
    color: #FF0054; /* 핑크색 */
    font-size: 50px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
#check h1 img {
    width: 70px;
}
#check p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}
.question-box h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.answer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.answer-item {
    padding: 15px;
    border: 2px solid #fff;
    border-radius: 8px;
    margin: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    font-size: 24px;
    text-align: center;
}

.score-summary {
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

@media (hover: hover) {
    .answer-item:hover {
        background-color: #FF0054;
        border-color: #FF0054;
    }
}

.btn {
    padding: 15px 30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background-color: #000;
    color: white;
    transition: background-color 0.3s;
    margin-top: 20px;
}
.btn:hover {
    opacity: 0.8;
}
.btn-start {
    background-color: #000;
}
.btn-start:hover {
    opacity: 0.8;
}

#result-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#result-title {
    margin-bottom: 15px;
}
#result-description {
    font-size: 1.2em; /* 결과 설명 폰트 키움 */
}

@media (max-width: 700px) {
    #check h1 {
        font-size: 18px;
    }

    #check h1 img {
        width: 30px;
    }

    #check p {
        font-size: 16px;
        line-height: 23px;
        margin-bottom: 0px;
        text-align: center;
    }

    .btn {
        font-size: 18px;
    }

    .question-box h2 {
        font-size: 18px;
    }

    .answer-item {
        font-size: 14px;
        padding: 8px 0;
    }

    .score-summary {
        font-size: 18px;
    }
}