* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jura', sans-serif;
    background-color: #001;
    text-align: center;
}

main {
    background-color: #054;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #001;
}

h1 {
    color: #eef;
    letter-spacing: 5px;
}

#statsDiv {
    width: 480px;
    display: flex;
    justify-content: space-evenly;
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #dfd;
}

#boardDiv {
    position: relative;
    display: flex;
}

#speedSpan {
    width: 150px;
}

#speed {
    margin-left: 1.1rem;
}

#scoreSpan {
    width: 150px;
}

#score {
    margin-left: 1.1rem;
}

#highestScoreSpan {
    width: 150px;
}

#highestScore {
    margin-left: 1.1rem;
}

#info {
    margin: 1rem 0;
    color: yellow;
}

#mobileNav {
    display: flex;
    justify-content: space-around;
    width: 300px;
    margin: 8px 0;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    font-size: 24px;
    font-weight: bold;
    outline: none;
    border: 1px solid #afa;
    border-style: solid;
    border-radius: 50%;
    /* background-color: #5cb85c; */
    background-color: #0a418e;
    color: white;
    cursor: pointer;
    box-shadow: 1px 1px 5px 1px #ddd;
}

#arrowBtns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#arrow2ndRow {
    display: flex;
    justify-content: space-between;
    gap: 48px
}


a {
    text-decoration: none;
    font-size: .1rem;
    opacity: .1;
    color: #000;
}