body {
    font-family: Arial, sans-serif;
    background-color: #ff3b83;
    margin: 0;
    padding: 0;
}

.container {
    width: 40vw;
    height: 110vh;
    margin: auto;
    background: white;
    padding: 30px 5vw;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #ff268b;
    margin: 0 2vw;
    line-height: 1.3;
}

#introtext {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 3vh 2vw;
    text-align: left;
}

.quiz-image {
width: 35vw;
}

h3 {
    font-size: 1.5rem;
}

#question {
    color:#ff268f;
    line-height: 1.3;
}
button {
    display: block;
    width: 70%;
    padding: 20px;
    margin: 10px auto;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.3rem;
}

.option1 {
    background-color: #45b5ff;
    color: white;
}

.option2 {
    background-color: #ff5442;
    color: white;
}

.option1:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

.option2:hover {
    background-color: #c0392b; /* Darker red on hover */
}

.option1:active {
    background-color: #002e4f; /* Even darker blue when clicked */
}

.option2:active {
    background-color: #640800; /* Even darker red when clicked */
}

.quiz-complete {
   margin: 15vh 0;
}

.quiz-complete h2 {
    font-size: 2rem;
}

.quiz-complete p {
    font-size: 1.5rem;
}

.quiz-complete h3 {
    font-size: 24px;
    color: #ff3b93;
    text-align: center;
}

/* General styling for the article */
.game-article {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    padding: 20px 5vw;
    margin: 20px auto;
    width: 40vw;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for the main title (h2) */
.game-article h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ff3b93;
}

/* Styling for the sub-headings (h3) */
.game-article h3 {
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: center;
    color: #ff3b93;
}

/* Paragraphs styling */
.game-article p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Styling for the list items */
.game-article ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.game-article li {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Mobile styling */
@media only screen and (max-width: 1024px) {
    .container {
        width: 82vw;
        height: auto;
        padding: 20px 8vw;
        text-align: center;
    }

    h1 {
        font-size: 1.8rem;
        margin-top: 2vh;
        margin-bottom: -1vh;
    }

    #introtext {
        font-size: 1.2rem;
        margin-top: 5vh;
        margin-left: 1vw;
        line-height: 1.6;
    }

    .quiz-image {
        width: 80vw;
    }

    #question {
        margin-top: 3vh;
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    button {
        width: 100%;
        font-size: 1.3rem;
        margin: 2vh 0;
        padding: 20px;
    }

    .game-article {
        width: 84vw;
        padding: 15px 7vw;
    }

    .game-article h2 {
        font-size: 1.8rem;
    }

    .game-article h3 {
        font-size: 1.4rem;
    }

    .game-article p {
        font-size: 1.2rem;
    }

    .game-article ul {
        padding-left: 10px;
    }

    .game-article li {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}