@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
    .custom-container {
        background-color: #555;
    	color: #ddd;
    	border-radius: 0;
    	padding: 20px;
    	font-family: 'Montserrat', sans-serif;
    	max-width: 100vw;
    	min-height: 96vh;
    	display: flex;
    	align-items: center;
    	justify-content: center;
    }
    
    .question {
        width: 75%
    }
    
    .options {
        position: relative;
        padding-left: 40px
    }
    
    #options label {
        display: block;
        margin-bottom: 15px;
        font-size: 14px;
        cursor: pointer
    }
    
    .options input {
        opacity: 0
    }
    
    .checkmark {
        position: absolute;
        top: 30%;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: #555;
        border: 1px solid #ddd;
        border-radius: 50%
    }
    
    .options input:checked~.checkmark:after {
        display: block
    }
    
    .options .checkmark:after {
        content: "";
        width: 10px;
        height: 10px;
        display: block;
        background: white;
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: 300ms ease-in-out 0s
    }
    
    .options input[type="radio"]:checked~.checkmark {
        background: #00816A;
        transition: 300ms ease-in-out 0s
    }
    
    .options input[type="radio"]:checked~.checkmark:after {
        transform: translate(-50%, -50%) scale(1)
    }
    
    .btn-primary {
        background-color: transparent;
        color: #ddd;
        border: 1px solid #ddd
    }
    
    .btn-primary:hover {
        background-color: #00816A;
        border: 1px solid #00816A
    }
    
    .btn-success {
        padding: 5px 25px;
        background-color: #00816A
    }
    
    @media(max-width:576px) {
        .question {
            width: 100%;
            word-spacing: 2px
        }
    }
    
    a {
        text-decoration: none!important;
        color: #ddd!important;
    }
    
    .ml-100 {
        margin-left: 100px;
    }
    
    .btn-primary:disabled,
    .btn-primary.disabled {
        color: #fff;
        background-color: #00816A!important;
        border-color: #00816A!important;
    }
    
    .hide {
        display: none;
    }
    
    .mb-10 {
        margin-bottom: 10px;
    }
    
    .mt-20v {
        margin-top: 20vh;
    }
    
    .black-color {
        color: black!important;
    }
    
    .in {
        background: rgba(0, 0, 0, 0.8)!important;
    }
    
    .textarea-answer {
        background-color: #d5d5d5;
        border-radius: 30px;
        outline: none;
    }
    
    body{
     min-height: 96vh;
     height: 100%;
    }
    
    #question{
     font-size: 40px;
    }
    
    .answers-cont {
     font-size:36px;
     border: 2px solid white;
     margin: 10px;
     padding-left: 10px;
    }
    .buttons-cont{
    	text-align: center;
    	padding-right: 21px;
    }
    .buttons-cont button{
	font-size: 25px!important;
    }
    #qa {
    	width: 100%;
    }