body {
    background-color: black;
}
h1, h2, h3, p {
    text-align: left;
    font-family: monaco, Consolas, "Lucida Console", monospace;
}
h1 {
    color: white
}
.button-cont {
    text-align: center;
}
.start-button {
    width: 80px;
    height: 40px;
    background-color: lightsalmon;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:500;
    border-color: aliceblue;
}
.refresh-button {
    width: 60px;
    height: 40px;
    background-color: lightseagreen;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    border-color: lightseagreen;
}

#score {
    color: red;
}
h3, h2{
    color: lightslategrey;
}
p {
    color: lightgray;
}
.title-cont {
    text-align: center;
    padding-left: 20px;
}
.title {
    width: 300px;
    height: 100px;
    background-image: url("../img/banner.png");
}

.grid {
    float: right;
    display: flex;
    flex-wrap: wrap;
    width: 600px;
    height: 600px;
    border: solid black;
}

.grid div {
    width: 30px;
    height: 30px;
}

.pac-dot {
    background-image: url("../img/starfish.png");
    box-sizing: border-box;
}

.wall {
    background-image: url("../img/terrain.png");
    background-color: darkgreen;
}

.power-pellet {
    background-image: url("../img/pasta.png");
    border-radius: 10px;
}

.blinky {
    background-image: url("../img/nurse.png");
}

.pinky {
    background-image: url("../img/nurse.png");
}

.inky {
    background-image: url("../img/nurse.png");
}

.clyde {
    background-image: url("../img/nurse.png");
}

.pac-man {
    background-image: url("../img/boy.png");
}

.fetus {
    background-image: url("../img/fetus.png");
}
.file {
    background-image: url("../img/starfish2.png");
}
.scared-ghost {
    background-color: lightgoldenrodyellow;
    border-radius: 5px;
}


.column {
    float: left;
    box-sizing: border-box;
    padding: 10px;
}

.text-column {
    margin-top: 13px;
    width: 380px;
    height: 600px;
    padding:10px;
    background-color: darkslategray;
}

/* Clear floats after the columns */
.row:after {
    box-sizing: border-box;
    content: "";
    display: table;
    clear: both;
}
a {
    color: darkslategray;
}
.code-link {
    padding-top: 20px;
    padding-left: 20px;
}
