body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    text-align: center;
    font-size: 24px;
}

.splashscreen {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
}

.queryarea {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.optionarea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.row {
    display: flex;
    justify-content: center;
}

.countbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20vw;
}

.countboxtitle {
    font-size: 24px;
}

.countboxvalue {
    font-size: 72px;
}

.querybox, .optionbox {
    display: flex;
    width: 40vw;
    height: 40vw;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    text-transform: capitalize;
    border: black 1px solid;
    margin: 2px;
}

img {
    max-width: 100%;
    max-height: 100%;
}
