/* colors:
BLUE: #1B99E8
RED: #D61043
YELLOW: #FFE33B
*/

body {
    margin: 0px;
    font-family: "Museo Slab 300";
    color: black;
    font-size: 13px;
}

body a {
    cursor: pointer;
    color: #1B99E8;
}

body a:hover {
    color: #D61043;
}

.pointer {
    cursor: pointer;
}

.main {
    text-align: center;
}

.title {
    font-size: 100px;
    color: red;
    padding: 20px;
}

.board {
    margin: 20px;
    padding-bottom: 150px;
}

.square {
    width: 9vw;
    height: 9vw;
    border: 1px solid black;
    display: inline-block;
    position: relative;
}

.icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    font-size: 100px;
}

.reset {
    padding: 26px;
    background: green;
    color: white;
    font-size: 40px;
    display: inline-block;
    vertical-align: top;
    margin-top: 25px;
}

.square.winning-square {
    background: yellow;
}

.controls {
    border-top: 1px solid black;
    position: fixed;
    top: 100vh;
    transform: translateY(-100%);
    width: 100%;
    background: #F3F3F3;
}

.mobile .controls {
    top: 91vh;
}

.notify {
    color: blue;
    display: inline-block;
    margin: 10px;
}

.notification {
    padding: 20px;
    font-size: 50px;
    border: 1px solid blue;
    display: inline-block;
    min-width: 100px;
}

.grid-size-cont {
    display: inline-block;
}

.gs-btn {
    display: inline-block;
    font-size: 77px;
    margin-top: 10px;
    vertical-align: top;
    cursor: pointer;
}

.grid-size {
    display: inline-block;
    border: 1px solid black;
    padding: 20px;
    font-size: 50px;
}












