/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.game-box{
    display: grid;
    grid-template: 1fr 2fr 2fr 2fr / 1fr 1fr 1fr;
    width: 600px;
    margin-left: calc(50vw - 300px);
    margin-top: calc(50vh - 400px);
    justify-content: center;
    
}

#s3, #s5{
    border-top: red 1px solid;
    border-bottom: red 1px solid;

}

#s4{
    border: red 1px solid;
}

#s1, #s7{
    border-left: red 1px solid;
    border-right: red 1px solid;
}

.game-grid{
    font-size: 200px;
    height: 200px;
    font-family: monospace;
    display: flex;
    justify-content: center;
}

.results{
    font-size: 50px;
    height: 100px;
    font-family: monospace;
    display: flex;
    justify-content: center;
    grid-column: 1 / 4;
}

#new-game-btn{
    grid-column: 2/3;
    display: inline-block;
    outline: 0;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid #ff4742;
    color: #fff;
    background-color: #ff4742;
    margin-top: 50px;
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 4px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1.5px 0px;
    font-weight: 800;
    font-size: 16px;
    height: 42px;
    :hover{
        background: 0 0;
        color: #ff4742;
    }
    
}