*{
    box-sizing: border-box;
}
@font-face {
    font-family: 'Racquetball';
    src: url('racquetball22.ttf') format('truetype');
    font-weight:lighter;
    font-style: normal;
}
:root{
    --darkbg: #101010;
    --bg: #161517;
    --lightbg: #222222;
    --yellow: #F3B042;
    --white: #fff;
    
    --btn-bg: #1e1e1e;
    --btn-bg-darker: #161616;
    --btn-high: #2c2c2c;
    --btn-shad: #080808;

    --btn-sel-bg: #581D96;
    --btn-sel-high: #9346D3;
    --btn-sel-shad: #2E1246;
}
.correct-answer {
    color: #45f342;
    font-weight: bold;
}

.incorrect-answer {
    color: #F34242;
    font-style: italic;
}
html, body{
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--darkbg);
    overflow-y: scroll;
}
.racquetball{
    font-family: 'Racquetball', sans-serif;
}
h1{
    font-size: 3.4em;
    margin: 0;
    padding: 0;
}
h2{
    font-size: 2em;
    margin: 0;
    padding: 0;
}
.under-construction-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--yellow);
    color: var(--lightbg);
}
#construction-logo{
    image-rendering: pixelated;
    
    margin-bottom: 2.5%;
}
.main-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--darkbg);
    color: var(--white);
}
.choice{
    width: 25vw;
    height: 20vw;
    min-width: 300px;
    min-height: 250px;
    background-color: var(--bg);
    border-width: 2.5px;
    border-color: var(--lightbg);
    border-style: solid;

    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
.mkc{
    margin-bottom: 10px;
}
.choices{
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    margin: 10px 10px 10px 10px;
    margin-top: 0;
    gap: 10px;
}
.main-btn{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    flex: 1 1 0;
    min-width: 0;
    background-color: var(--btn-bg);
    border-width: 2.5px;
    border-style: solid;
    border-color: var(--btn-high);
    box-shadow: 0px 5px 0px var(--btn-shad);

    color:white;
    overflow-x: hidden;

    transition-duration: 200ms;
}
.main-btn2{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    height: auto;
    width: auto;
    
    background-color: var(--btn-bg);
    border-width: 2.5px;
    border-style: solid;
    border-color: var(--btn-high);
    box-shadow: 0px 5px 0px var(--btn-shad);

    color:white;
    overflow-x: hidden;

    transition-duration: 200ms;
}
.btn-text {
    color: white;
    margin: 0;
    font-size: 3vh; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-text2 {
    color: white;
    margin: 0;
    font-size: 4vh; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main-btn:hover, .main-btn2:hover{
    background-color: var(--btn-sel-bg);
    border-width: 2.5px;
    border-style: solid;
    border-color: var(--btn-sel-high);
    box-shadow: 0px 5px 0px var(--btn-sel-shad);
}
.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 15px;
    color: var(--white);
    font-family: sans-serif;
}

.game-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--btn-bg-darker);
    padding: 25px 30px;
    border: 3px solid var(--btn-high);
    box-shadow: 0 10px 0px var(--btn-shad);
    gap: 12px;
    min-width: 350px;
    max-width: 450px;
    width: 90vw;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
}

.input-group label {
    margin-bottom: 4px;
    font-weight: bold;
}

.input-field {
    width: 100%;
    padding: 16 px;
    font-size: 2vh;
    background-color: var(--btn-bg);
    color: var(--white);
    border: 1px solid var(--btn-high);
    min-height: 50px;
}

#feedback, #score {
    margin: 0;
    text-align: center;
}

#replayButton, #submitButton, #nextButton{
    width: 100%;
}

.decent-text-size{
    font-size: 3vh;
}
.decent-stext-size{
    font-size: 2vh;
}

#nextButton{
    margin-top: 8px;
}