*{
    margin: 0%;
    padding: 0%;
}
body{
    background-color: rgb(43, 44, 40);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 250, 251);
    margin-bottom: 3vh;
}

h1{
    color: black;
    font-size: 5vh;
    background-color: rgb(51, 153, 137);
    border-radius: 2vh;
    line-height: 8vh;
}
.BMIcal{
    text-align: center;
    font-size: 4vh;
    border-radius: 4vh;
    box-shadow: rgba(51, 153, 137, 0.95) 0px 5px 15px;
    margin: 6vh;
    padding: 2vh;
    background-color: rgb(14, 21, 21);
    width:70vh;
}

form{
    padding:3vh 0 1vh 0;
    line-height:5.6vh;
}
input{
    height: 4.5vh;
    width:240px;
    text-align: center;
    border: none;
    border-radius: 1vh;
    margin-bottom: 2vh;
}
input:focus{
    border: none;
    outline: none;
}

button{
    background-color: rgb(51, 153, 137);
    color: black;
    padding: 1vh;
    margin:0.8vh 0 2vh 0;
    border-radius: 1vh;
    font-size: 3vh;
    border: none;
}
.submit{
    display: flex;
    justify-content: center;
    gap: 3vh;
}
button:hover{
    cursor: pointer;
    background-color: rgba(51, 153, 137, 0.65);
    transform: scale(1.25);
    transition: 0.1s;
    color: rgb(255, 250, 251);
}

.BMI{
    font-size: 7vh;
}

.reaction{
    position: relative;
    display: flex;
    justify-content: center;
    /* height: 16vh; */
}


.msgContainer{
    font-size: 3.6vh;
    margin:2vh 0 2vh 0;
}

.emoji{
    font-size: 13vh;
}

.FYQs{
    display: flex;
    justify-content: center;
    padding: 4vh;
}

.questions{
    width: 130vh;
    background-color: rgb(14, 21, 21);
    border-radius: 2vh;
}

h3{
    background-color:rgb(51, 153, 137) ;
    border-radius: 2vh;
    padding:2vh;
}

.FYQques{
    color: rgb(255, 250, 251);
    padding: 2vh;
    font-size: 3vh;
    line-height: 5vh;
}
.ques{
    padding: 1vh;
}
.ques:hover{
    cursor: pointer;
    background-color:rgb(43, 44, 40) ;
    outline:3px solid rgb(51, 153, 137) ;
    border-radius: 1vh;
}

.hide{
    display: none;
}

@media(max-width:414px){

    .BMIcal{
        font-size: 3vh;
    }
    h1{
        font-size: 3.5vh;
    }
    button{
        font-size: 3.2vh;
    }
    .BMI{
        font-size: 5vh;
    }
    .msgContainer{
        font-size: 2.6vh;
    }
    .FYQques{
        font-size: 2.5vh;
    }
    .emoji{
        font-size: 7vh;
    }
    h3{
        font-size: 3vh;
    }
    input{
        width: 170px;
    }
}
