@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto;
    line-height: 100%;
    overflow: hidden;
    cursor: default;
}
body {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}
.que-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
.que {
    font-size: 3.6rem;
    width: 95%;
    text-align: center;
}
.arrow {
    color: blue;
}
.output {
    font-size: 270px;
}
.selection {
    padding: 20px;
    background-color: #000;
}
input {
    padding:2px;
    border: none;
    border-bottom: rgb(133, 133, 133) solid 1px;
    width: 10vw;
    min-width: 49px;
}
input:hover {
    cursor: text;
}
input:focus-visible {
    outline: none;
    border-bottom: blue soild 1px;

}
.limit-container {
    border-left: gray solid 1px;
    border-bottom: gray solid 1px;
    border-bottom-left-radius: 10px;
    position: absolute;
    right: 0;
    width: fit-content;
    padding: 10px;
}
.limit-submit {
    border: none;
    border-bottom: gray solid 1px;
    background-color: white;
    position: relative;
    padding:3px;
    border-width: 1px;
    right:4px;

}
.limit-submit:hover {
    cursor:pointer;
    color: rgb(11, 154, 243);
}
.tag {
    font-size: 15px;
    color: #bdbdbd;
    padding: 15px;
    background-color: #424242;
    width: 20vw;
    border-bottom-right-radius: 15px;
    border-right: 4px solid #a7a5a5;
    border-bottom: 3px solid #a7a5a5;
    min-width: 138px !important;
    text-align: center;
}
.option {
    margin-left: 10px;
    color: white;
}