* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}

.hero {
    background-color: #0066ff8c;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    background-color: #ffffff;
    width: 56vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card .container {
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.container input {
    height: 30px;
    width: 40vh;
    border-radius: 5px;
    border: 1px solid rgba(128, 128, 128, 0.329);
}

/* .container button {
    margin: 10px;
    border-radius: 5px;
    border: none;
    background-color: #0066ff8c;
    color: #fff;
    font-weight: bolder;
    cursor: pointer;
    height: 5vh;
    width: 15vh;
    transition: all 0.3s ease-in-out;
}

.container button:hover{
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
} */

.container .display {
    margin: 2vh;
    color: #7c7a7a;
}

.container .solution{
    display: none;
    overflow: scroll;
    width: 100%;
}

.container .solution::-webkit-scrollbar{
    visibility: hidden;
    display: none;
}

.container .solution .wrapper{
    margin: 2vh 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    height: 10vh;
    width:100%;
    border-left: 5px solid  #0066ff8c;
    padding-left: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: scroll;
}

.container .solution .wrapper::-webkit-scrollbar{
    display: none;
    visibility: hidden;
}

.wrapper .synonym span{
    text-decoration: underline;
}

.wrapper .synonym span .first{
    padding-left: 5px;
}

.container .active {
    display: block;
}