body {
    background-image: url("https://wallpapers.com/images/hd/one-piece-colorful-artwork-m6f254wfx9bwfn63.jpg");
}

.gameContainer {
    font-family:sans-serif;
    background-color: white;
    width: 90%;
    max-width: 600px;
    margin: 100px auto 0;
    border-radius: 13px; 
    padding: 30px;
}

.gameContainer h1 {
    display: flex;
    justify-content: center;
    font-size: 70px;
    font-weight: 600;
    border-bottom: 1px solid;
    padding-bottom: 30px;
}

.quiz {
    padding: 20px 0;
}
.quiz h2 {
    font-size: 18px;
    font-weight: 600;
}

.btn {
    background: white;
    color: black;
    font-weight: 500;
    width: 100%;
    border: 1px solid;
    padding: 10px;
    margin: 10px 0;
    border-radius: 13px;
    cursor: url(../images/df-cursor.png), pointer;
}

.btn:hover:not([disabled]) {
    background: rgb(8, 139, 171);
    color: white;
}

#next-btn {
    background:rgb(8, 139, 171);
    color: white;
    font-weight: 500;
    width: 150px;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 13px;
    display: block;
}

.correct {
    background: green;
}

.incorrect {
    background: red;
}

#instructions {
    border: 5px solid;
    border-radius: 13px;
    background: white;
    width: 20%;
    font-size: 18px;
    padding: 10px;
}