@import url("https://fonts.googleapis.com/css?family=Space+Mono:regular,italic,700,700italic");
h1 {
    text-align: center;
    color: white;
    margin-top: 10px;
}
header {
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 60px;
    position: fixed;
    background-color: black;
}
body{
    background-color: grey;
    color: white;
    font-family: Space Mono;
}
p {
    margin-top: 70px;
}
a {
    text-decoration: none;
    color: rgb(7, 7, 61);
    transition: 0.3s;
}
a:hover {
    color: white;
}

/*Noughts and Crosses CSS*/

#nacp {
    margin-top: 30px;
    font-size: 35px;
    background-color: black;
    text-align: center;
}
.nacpa{
    background-color: rgb(86, 85, 85);
    padding: 20px;
    width: 200px;
    margin-top: 10%;
    margin-left: 8%;
    display: table;
}
.row div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    border: 1px solid white;
    height: 80px;
    width: 80px;
    float: left;
    font-size: 72px;
}

.row{
    clear: both;
    margin-left: 8%;
}

#gap {
    margin-bottom: 10%;
}
