html,
body {
    width: 100vw;
    height: 100vh;
    padding: 0px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
}

.options {
    margin: 0 auto;
    list-style-type: none;
    list-style: none;
    padding-left: 0px;
    width: max-content;
    height: max-content;
}

.options li {
    width: max-content;
    height: max-content;
    margin-top: 10px;
}

.options button {
    cursor: pointer;
    width: 300px;
    height: 40px;
    text-align: left;
    user-select: none;
    border-radius: 20px;
    border-width: 3px;
    border-style: solid;
    border-color: rgb(27, 56, 96);
    background-color: aliceblue;
}

.options button:hover {
    background-color: rgb(227, 234, 241);
    border-color: rgb(58, 85, 120);
}

.options button span {
    margin-left: 7px;
}

.title {
    font-family: monospace;
    font-size: 50px;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
    color: rgb(66, 66, 66);
}

.exampleImage {
    width: 500px;
    height: max-content;
    pointer-events: none;
    user-select: none;
}