@import url('https://fonts.googleapis.com/css2?family=Vazir&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1rem;
}

body {
    font-family: 'Vazir', sans-serif;
    background-color: #121212;
    color: #ffffff;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.main-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    border-radius: 12px;
    gap: 3rem;
    padding: 1rem;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.533);
}

.questions-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    border-radius: 12px;
    gap: 3rem;
}

.question-box {
    gap: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;

}

.question-text {
    width: 11rem;
}

.second-title,
.title {
    width: 18rem;
    color: red;

}

input {
    border: none;
    outline: none;
    width: 11rem;
    height: 2rem;
    border-radius: 12px;
    padding: 0.5rem;
}

button {
    border: none;
    outline: none;
    width: 8rem;
    height: 2rem;
    border-radius: 12px;
    padding: 0.5rem;
}