@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body {
    width: 100%;
    background-color: rgb(211, 197, 208);
}

 * {
     box-sizing: border-box;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 }

 header {
     display: flex;
    justify-content: center;
    padding: 0.5 rem;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    }

#title {
    padding: 0.5 rem;
    margin-bottom: 0.5;
    font-weight: bold;
}

#displayBox {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 0.2rem;
    padding-inline: 10rem;
}

.display {
    border-style: solid;
    padding: 0.5rem;
    margin-inline: 0.2rem;
    width: 2rem;
    height: 2.5rem;
}

main {
    display: flex;
    justify-content: center;
}

#game {
    width: 1000px;
    height: 608px;
    background-color: black;
    position: fixed;
}

#target {
    width: 50px;
    height: 50px;
    position: relative;
}

#game:hover{
    cursor: crosshair;
}

button {
    padding: 0.5rem;
    font-style: italic;
}

.displayTabs {
    display: flex;
    justify-content: space-between;
    width: 6rem;
    align-items: center;
}

