body {
    /* border: 1px solid cyan; */
    background-color: black;
    color: rgb(207, 207, 207);
    display: flex;
    justify-content: center;
    align-items: center;
}

#main {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 70vw;
}

#title {
    text-align: center;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 1.3rem;
}

h3 {
 font-size: 1.1rem;
}

#questions h3 {
    margin: 5% auto;
}

#questions {
    /* border: 1px solid green; */
    margin: 7% 5%;
}

.question {
    /* border: 1px solid pink; */
    height: 250px;
    margin: 4% auto;
}

.question p {
    width: 65%;
}

textarea {
    width: 65%;
    resize: none;
    height: 40%;
    background-color: rgb(207, 207, 207);
}

.images {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 7% auto;
}

.option {
    /* border: 1px solid orange; */
    width: 15%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 20%;
    height: 50%;
    border-radius: 20px;
}

.images img {
    width: 50%;
    aspect-ratio: 1 / 1;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}

.images img:hover {
    cursor: pointer;
}

#submit {
    margin: 4% auto;
    font-size: 2rem;
    background-color: transparent;
    color: rgb(207, 207, 207);
    border: 2px solid rgb(207, 207, 207);
    border-radius: 15px;
    padding: 2%;
}

#submit:hover {
    box-shadow: 0px 0px 20px 4px white;
}

#submit:active {
    filter: brightness(1.1);
    background-color: rgb(177, 177, 177);
}

button:hover {
    cursor: pointer;
}

#statusMessage {
    color: rgb(240, 88, 88);
    font-size: 1.2rem;
    text-align: center;
    display: none;
}

footer {
    /* border: 1px solid blueviolet; */
    margin: 5% auto;
    width: 90%;
}