* {
    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;
}

.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;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.header h1 {
    text-align: center;
    font-size: 3vw;
    position: absolute;
    top: 2vw;
    left: 22vw;
}

.ques-div {
    text-align: justify;
    border-top: 2px solid;
    border-bottom: 2px solid;
    margin-top: 10px;
    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;
}

/* x{
    padding-top: 20px;
} */

.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%;
}
 
 
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;
}

.collapsible {
    /* position: absolute; */
    left: 140px;
}

.content {
padding: 0 18px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
}


.collapsible:hover {
    background-color: #ccc;
    border-radius: 20px;
}

.collapsible {
    color: #444;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #d9a1a1;
    border-radius: 10px;
    /* width: 420px; */
    width: 45vw;
    margin-top: 20px;
    padding: 12px 16px;

}

.dropdown:hover .dropdown-content {
    display: block;
}

.last {
    margin-top: 20px;
    width: 80%;
    display: flex;
    justify-content: space-between;
}