body{
    background-color: #4b4b4b;
    text-align: center;
}
img {
    display: block;
    width: 300px;
    height: 200px;
    object-fit: cover;
    margin: 10px 0;
    border-radius: 30px;
    border: none;
    filter: drop-shadow(0 0 0.75rem rgb(66, 66, 66));
}
button{
    background-color: #2f2f2f;
    font-size: 40px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 10px;
    padding: 30px;
    border-radius: 20px;
    border: none;
    text-align: center;
    filter: drop-shadow(0 0 0.75rem rgb(66, 66, 66));
    text-shadow: 0 0 10px #013f49;
}
button:hover {
    cursor: pointer;
    transform: scale(1.02);
}

h1, h2 {
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 10px;
    text-shadow: 0 0 30px #001a0f;
}
h1 {
    font-size: 60px;
    filter: drop-shadow(0 0 0.75rem rgb(66, 66, 66));
}
h2 {
    font-size: 40px;
    color: #cccccc;
}
#score {
    color: #787777;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 30px #1e2500;
}
.options-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.option-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#option1, #option2 {
    width: 500px;
}
#image1, #image2 {
    width: 400px;
    height: 200px;
}
#next {
    float: right;
}