@import url('https://fonts.googleapis.com/css2?family=Sniglet:wght@400;800&display=swap');

body {
    background: #86C4FF;
    font-family: 'Sniglet', sans-serif;
    display: grid;
    grid-gap: 1;
}

/* Overall grid container */
.container {
    display: grid;
    grid-template-rows: auto 1fr;
    /* Title section and content */
    height: 100vh;
}

* {
    box-sizing: border-box;
    margin: 0;
}

.lvl {
    border-radius: 10%;
}

.image-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}


#info {
    margin: auto auto;
}

.grid {
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-gap: 10px;
    text-align: center;
    height: 100%;

}

#middle1 {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    text-align: center;
    height: 100%;
}

#middle2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    text-align: center;
    height: 100%;
}

ul.choices {
    list-style-type: none;
    padding: 0;
}

#next {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    text-align: right;
    height: 100%;
}

h1 {
    color: #FFA8A8;
}

p {
    color: #FFFFFF;
}
