module.css:

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #ffffff;
    color: black;
    margin: 0;
    padding: 0;
}

#welcome-screen, #spiritual-gifts-assessment, #question-container, #results {
    margin: auto;
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    padding: 50px 5% 2rem 5%;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    color: black;
}

#welcome-screen{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

h3 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
}

.options-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1%;
    margin-top: 10px;
    max-width: 100%;
}

.options-container label {
    background-color: #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    border: 0px solid transparent;
    transition: all 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 11%;
    aspect-ratio: 1/1;
}

.options-container input[type="radio"] {
    display: none;
}

.options-container input[type="radio"]:checked + label {
    background-color: #F45A14;
    color: white;
    border: 0px solid #F4A261;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

button {
    background-color: #F45A14;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 12px;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 15px;
    width: auto;
    padding: 10px 20px;
    max-width: 200px;
}

button:hover {
    background-color: #E76F51;
}

@media (max-width: 480px) {
    .options-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .options-container label {
        min-width: 11%;
        font-size: 13px;
    }
    h3 {
        font-size: 14px;
    }
    .scale-labels {
        font-size: 10px;
    }
}