@import url('../styles.css');

main {
    display: flex;
    flex-direction: column;
}

#modeSelect {
    display: grid;
    grid-template-columns: 50vw 50vw;
    font-size: 2rem;
    a {
        display: flex;
        font-size: inherit;
        background-color: lightcoral;
        border: black solid 1px;
        text-align: center;
        height: 50vh;
        justify-content: center;
        align-items: center;
    }
}

#playCPU:hover,
#playCPU:focus {
    background-color: greenyellow;
}
#playAlone:hover,
#playAlone:focus {
    background-color: orangered;
}