body {

}

h1 {
    text-align: center;
    color: white;
}

h2 {
    text-align: center;
    color: white;
}

.question_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

ol {
    width: fit-content;
    border: 1px solid;
    border-radius: 16px;
    padding: 24px;
    padding-left: 36px;
    background-color: white;
}

button {
    padding: 16px;
    border-radius: 16px;
    border: 2px solid green;
    background-color: lightgreen;
}

.hero-image::before {
    content: '';
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("spgbob-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: -1;
}

.results {
    color: white;
}

.images {
    width: 200px;
}