*{
    margin: 0;
    padding: 0;
}



body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.title{
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 16px;
    font-weight: 500;
}

.title img{
    width: 36px;
    height: 36px;
    float: left;
}

.title p{
    float: left;
    line-height: 36px;
    margin: 0px;
}


#app {
    text-align: center;
}

#header {
    font-size: 24px;
    font-weight: 500;
}

#main {
    margin-bottom: 20px;
}

#book-image {
    width: 300px;
    height: auto;
    cursor: pointer;
}

#prompt-text{
    color: #00000083;
}

#answer_page{
    display: none;
    text-align: center;
}

#answer_page p{
    font-family: 'MyFont', sans-serif;
    font-size: 100px;
    line-height: 100px;
}

#answer_text{
    font-family: 'MyFont', sans-serif;
    font-size: 88px;
    line-height: 100px;
}

#retry-button {
    display: block;
    margin-top: 60px;
    cursor: pointer;
    color: #00000083;
}

#retry-button:hover{
    text-decoration: underline;
    color: #000000a8;
}



#loading{
    display: none;
    text-align: center;
    color: #00000083;
    font-size: 14px;
}

.about{
    position: absolute;
    bottom: 48px;
    display: flex;
    flex-direction: row;
    padding: 0px;
    gap: 12px 44px;
    flex-wrap: wrap;
    align-content: flex-start;
    font-size: 12px;
    color: #b2b2b2;
}

.about a{
    font-size: 12px;
    color: #b2b2b2;
    text-decoration: none;
}

.about a:hover{
    color: #b2b2b2;
    text-decoration: underline;
}





.links{
    position: absolute;
    bottom: 16px;
    display: flex;
    flex-direction: row;
    padding: 0px;
    gap: 6px;
    flex-wrap: wrap;
    align-content: flex-start;
    font-size: 12px;
    color: #b2b2b2;
}

.links a{
    font-size: 12px;
    color: #b2b2b2;
    text-decoration: none;
}

.links a:hover{
    color: #b2b2b2;
    text-decoration: underline;
}
.reward {
    gap: 6px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    border-radius: 12px;
    /* background: #6FECFF; */
    position: absolute;
    top: 12px;
    right: 24px;
    border: 2px solid #000000;
}

.reward:hover {
    background: #6FECFF;
    cursor: pointer;
}
.reward p {
    font-size: 14px;
    line-height: 24px;
}
.qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    flex-wrap: wrap;
    align-content: center;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: #00000091;
    position: fixed;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.qrcode img {
    border-radius: 10px;
}

.qrcode a {
    font-family: 'MyFont', sans-serif;
    padding: 8px 12px;
    color: #ffffff;
    text-decoration: underline;
}