*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body{
    background-color: #f3f7fa;
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow-x: hidden;
}

.mainWrapper{
    width: 700px;
    height: auto;
    background-color: white;
    box-shadow: 2px 2px 3px 1px grey;
    border-radius: 2px;
    padding: 10px;
}

.header{
    width: 100%;
    height: auto;
    border-bottom: solid grey 1px;
    padding-bottom: 10px;
}

.headerTitle{
    font-size: 2rem;
    font-weight: 600px;
    margin-bottom: 10px;
    font-weight: 500;
}

.questionWrapper{
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-bottom: solid grey 1px;
}

.question{
    width: 100%;
    height: auto;
}

.answersWrapper{
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
}

.answersWrapperCheckbox{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px; 
}

.buttonWrapper{
    width: 100%;
    height: 50px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.button{
    width: 250px;
    height: 50px;
    font-size: 1.3rem;
    background-color: white;;
}

.button:hover{
    cursor: pointer;
    background-color: #f3f7fa;
    color: black;
}

.hidden{
    display: none;
}

@media (max-width: 600px) {
    .answersWrapper{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 10px; 
    }
}