* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    background-color: #111;
    color: white;
    display: flex;
    justify-content: center;

}

a {
    text-decoration: none;
    color: black;
}

.outer {
    height: 100vh;
    width: 60vw;
    padding: 1vw;
    padding: 1vw;
    box-shadow: 0 0 10px 5px gray;
    /* box-shadow: h-offset v-offset blur spread color; */
    /* box-shadow: 10px 0 5px 15px gray; */
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* position: relative; */
}

.header h1 {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    text-align: center;
    font-size: 3vw;
    position: absolute;
    top: 2vw;
    left: 40vw;
}

.ques-div {
    text-align: justify;
    border-top: 2px solid;
    border-bottom: 2px solid;
    /* display: flex; */
    flex-direction: column;

}

.ques {
    padding-left: 10px;
    padding-top: 10px;
    font-size: 30px;
    margin-bottom: 1vw;
}

.r {
    margin-right: 1vw;
}

input[type=radio] {
    margin-top: 10px;
    width: 20px;
    height: 2em;
}

.option {
    font-size: 20px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 10px;
    text-transform: uppercase;
    border: 2px solid gray;
    display: flex;
    align-items: center;
}

.option:hover {
    border-left: transparent;
    border-right: 2px solid rgb(129, 181, 46);
    border-bottom: 2px solid rgb(129, 181, 46);
    margin-left: 8px;
}

.combine {
    border: 1px solid gray;
    width: 80%;
}

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}

.collapsible:hover {
    background-color: #ccc;
    border-radius: 20px;
}

.collapsiblezzzz {
    left: 10px;
    /* position: absolute; */
    background-color: #c8c8c8;
    color: #444;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 530px;
    background-color: #d9a1a1;
    border-radius: 10px;
    width: 850px;
    margin-top: 20px;
    padding: 12px 16px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.last {
    width: 80%;
    display: flex;
    justify-content: space-between;

}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: larger;
    border-radius: 15px;
    margin-top: 10px;
    /* position: absolute; */
    /* right: 130px; */
    height: 60px;
    width: 110px;
}

.previous {
    /* position: absolute; */
    /* left: 0px; */
    background-color: red;
    /* position: absolute; */
}