/*
    Landon Hansen
    2/5/2024
    Styles for Higher or Lower game
*/

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    margin: 0;
}

input, textarea, button {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

input:focus {
    outline: none;
}

.game {
    display: grid;
    grid-template-rows: 1fr / 50px;

    width: 100%;
    max-width: 500px;

    
    max-height: 500px;

    background-color: lightgray;
}

#gameForm {
    grid-row: 2 / 3;

    display: grid;
    grid-template-columns: 1fr / 25px;
}

#gameInput {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

#takeGuess {
    grid-row: 2 / 3;
    grid-column: 2 / 3;

    padding-left: 0;
}