* {
    box-sizing: border-box;
}

body {
    font-family: "Lucida Console", "Courier New", monospace;
    background: url("images/background.svg") center top / 100% auto repeat-y #5D7A5D;
    font-size: 20px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Main quiz section */
.quiz-page {
    font-family: "Lucida Console", "Courier New", monospace;
    text-align: center;
    font-size: 23px;
    max-width: 500px;
    width: 100%;
    min-height: 100svh;
    font-weight: bold;
    padding-top: 80px;
}

#quiz {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


h1 {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 28px;
    font-weight: bold; 

}

p{
    font-size: 12px;
}

h2{
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.5;
}

.start-button {  
    display: inline-block;
    font-family: "Lucida Console", "Courier New", monospace;
    background-color: #66593D; 
    border: none;
    color: #312500;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 0px;
    font-weight: 400;
    cursor: pointer;
}


.start-button:hover {
    background-color: #82724e;
    color: #312500;
}

/* Explore and About button */
.about-button { 
    display: inline-block;
    font-family: "Lucida Console", "Courier New", monospace;
    background-color: #B4A88A; 
    border: none;
    color: #312500;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 0px;
    font-weight: 400;
    cursor: pointer;
} 

.about-button:hover {
    background-color: #d0c29f;
    color: #312500;
}

.start-image {
    max-width: 100%; 
    max-height: 300px; 
}

.answer-button {
    font-family: "Lucida Console", "Courier New", monospace;
    background-color: #4e3f27;
    border: none;
    color: #ffffff;
    padding: 15px 32px;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 2px;
    display: block;
    width: 100%;
    cursor: pointer;
}

.answer-button:hover {
    background-color: #f4ffeb;
    color: #4e3f27;
}

/* To fix button hover on mobile */
@media (hover: none) {
    .answer-button:hover {
        background-color: #4e3f27;
        color: #ffffff;
    }
}

#question-text {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 22px;
    color: #0b032d;
    margin: 0 0 15px 0;
    padding-top: 20px;
    width: 100%;
    text-align: center;
}

/* Results page */
#result {
    padding: 10px;
    background-color: #ffffff00;
    display: none;
    width: 100%;
    max-width: 400px;
}

.result-image {
    text-align: center;
    width: 100%;
}
 
.result-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: auto;
    margin-top: 20px;
}

/* Explore page */
#explore-page {
    font-family: "Lucida Console", "Courier New", monospace;
    text-align: center;
    font-size: 23px;
    max-width: 440px;
    width: 100%;
    font-weight: bold;
}

#explore-page img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

#explore-page h1 {
    margin-top: 20px; 
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 18px;
    color: #0b032d;
    text-align: center;
}

/* Computer icon to link back to home */
.home-image {
    cursor: pointer;
    max-width: 100%; 
    max-height: 100px;
}

/* About page */
#about-page {
    font-family: "Lucida Console", "Courier New", monospace;
    text-align: center;
    font-size: 23px;
    width: 100%;
    max-width: 500px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about-block {
    max-width: 500px;
    width: 100%;
    background-color: #5d7a5d8e;
    display: inline-block;
    padding: 16px 24px;
    overflow-wrap: break-word;
}

#about-page h1 {
    margin-top: 20px; 
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 18px;
    color: #0b032d;
    text-align: center;
}

#about-page h3 { 
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 18px;
    color: #0b032d;
    text-align: center;
}

#about-page p { 
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 12px;
    color: #0b032d;
    text-align: left;
    letter-spacing: 1.5px;
    line-height: 1.2;
}