body {
    font-family: "Arsenal";
    color: purple;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between
}

.project-link:hover,
.project-link:active {
    color: #f939f9
}

.project-link {
    color: black;
    font-weight: bold
}

#gameContainer {
    position: relative;
    width: 100%;
    height: 30vh;
    overflow: hidden
}

#outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px
}

#purpleCircle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    width: 180px;
    height: 180px
}

.mode-toggler-container {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 10px
}

.modeToggler {
    padding: 7px 12px;
    font-size: 12px;
    text-align: center;
    color: black;
    background-color: blanchedalmond;
    border-radius: 7px;
    box-shadow: 0 4px #999;
    margin: 3px;
    font-size: 1rem;
    font-family: "Arsenal"
}

.modeToggler:hover {
    background-color: #403a3a;
    color: blanchedalmond;
    cursor: pointer
}

.modeToggler:active {
    background-color: #403a3a;
    box-shadow: 0 2px #666;
    transform: translateY(2px)
}

.startButton {
    padding: 15px 25px;
    font-size: 24px;
    text-align: center;
    color: black;
    background-color: #5ee85e;
    border-radius: 15px;
    box-shadow: 0 9px #999;
    margin: 10px;
    font-size: 2rem;
    font-family: "Arsenal"
}

.startButton:hover {
    background-color: #38a21a;
    cursor: pointer
}

.startButton:active {
    background-color: #38a21a;
    box-shadow: 0 5px #666;
    transform: translateY(4px)
}

.stopButton {
    padding: 15px 25px;
    font-size: 24px;
    text-align: center;
    color: black;
    background-color: red;
    border-radius: 15px;
    box-shadow: 0 9px #999;
    margin: 10px;
    font-size: 2rem;
    font-family: "Arsenal"
}

.stopButton:hover {
    background-color: #d93030;
    cursor: pointer
}

.stopButton:active {
    background-color: #d93030;
    box-shadow: 0 5px #666;
    transform: translateY(4px)
}

.tips {
    color: black;
    font-weight: bold
}

/* Navigation bar styles (not currently in use) */
nav {
    width: 24%;
    background-color: purple;
    overflow: auto;
    border-radius: 10px
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    display: flex;
    justify-content: center
}

nav li {
    float: left
}

nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: bold
}

nav li a:hover {
    background-color: #ddd;
    color: black
}

/* Dark mode styles */
body.dark-mode {
    background-color: #222;
    color: #ddd
}

body.dark-mode .project-link {
    color: #ddd
}

body.dark-mode .project-link:hover {
    color: #f939f9
}

body.dark-mode .project-link:active {
    color: #f939f9
}

body.dark-mode .tips {
    color: #ddd
}

body.dark-mode .startButton {
    color: #ddd;
    background-color: #2e6b45;
    box-shadow: 0 9px #666
}

body.dark-mode .startButton:hover {
    background-color: #31c91d
}

body.dark-mode .startButton:active {
    background-color: #31c91d;
    box-shadow: 0 5px #999
}

body.dark-mode .stopButton {
    color: #ddd;
    background-color: #800;
    box-shadow: 0 9px #666
}

body.dark-mode .stopButton:hover {
    background-color: #f11e1e
}

body.dark-mode .stopButton:active {
    background-color: #f11e1e;
    box-shadow: 0 5px #999
}