*{
    margin: 0;
    padding: 0;
    font-family: "Gupter", serif;
    font-weight: 400;
    font-style: normal;
}

body{
    background: rgb(37, 68, 44);
}

.app{
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 100px auto 0;
    border-radius: 10px;
    padding: 30px;
}

.app h1{
    font-size: 25px;
    color: brown;
    font-weight: 600;
    border-bottom: 1px solid rgb(15, 20, 16);
    padding-bottom: 30px;
}

.quiz{
    padding: 20px 0;
}

.quiz h2{
    font-size: 18px;
    color: red;
    font-weight: 600;
}

.button{
    background: white;
    color: black;
    font-weight: 500;
    width: 100%;
    border: 1px solid black;
    padding: 10px;
    margin: 10px 0;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.button:hover:not([disabled]){
    background: purple;
    color: beige;
}

.button:disabled{
    cursor: no-drop;
}

#next-button{
    background: blue;
    color: white;
    font-weight: 500;
    width: 150px;
    border: 0;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 4px;
    cursor: pointer;
    display: none;
}

.correct{
    background: green;
}
.incorrect{
    background: red;
}


#map{
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(151, 43, 43);
    z-index: 0;

    border-radius: 10px;
    padding: 30px;
    overflow: scroll;
}

#map p{
    position: relative;
    max-width: 90%;
    max-height: 50%;

    background: white;
    width: 90%;
    max-width: 600px;
    margin: 100px auto 0;
    border-radius: 10px;
    padding: 30px;
    overflow: scroll;
}

#story-card{
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(151, 43, 43);
    z-index: 0;
}

#interface-bottom{
    position: relative;
    z-index: +100;
}