const ModeSelectionBox = styled.div<{ hasQuestion: boolean }>`
position: relative;
display: inline-flex;
justify-content: flex-start;
align-items: center;
z-index: 1;
white-space: nowrap;
color: ${({ theme }) => theme.ModeSelectionBoxTextColor};
font-family: "Open Sans";
font-size: 16px;
font-weight: 600;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
position: absolute;
display: flex;
flex-direction: column;
@media (max-width: 768px) {
font-size: 16px;
}
`