body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
    color: white;
}

.landing-container,
.quiz-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: white;
}
.result-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: black;
    text-align: center;
    font-weight: 1000;
    font-size: 20px;
}

.background-a {
    background-image: url('BgA.jpg');
    /* Image for Variable A */
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.background-b {
    background-image: url('BgB.jpg');
    /* Image for Variable B */
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.option {
    display: inline-block;
    width: 45%;
    margin: 5px;
}

.option img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    transition: transform 0.2s;
    
}

.option:hover img {
    transform: scale(1.05);
}

h1,
p {
    margin: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
