@charset "UTF-8";

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-button {
    display: inline-block;
    padding: 3px 6px;
	margin-bottom: 10px;
    border: 1px solid black;
    text-decoration: none;
}

#reset{
	margin: 10px;
}

#gameArea {
    width: 500px;
    height: 500px;
    border: 2px solid black;

    position: relative;
}

#player {
    width: 20px;
    height: 20px;
    background-color: black;

    position: absolute;
}

.enemy {
    width: 10px;
    height: 10px;
    background-color: red;

    position: absolute;
}

.homing{
	background-color: green;
}
.straight{
	background-color: yellow;
}