body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.permanent-marker-regular {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: white;
    color: black;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: grey;
    color: white;
}

.light-mode {
    background-color: white;
    color: black;
}

.light-mode button {
    background-color: black;
    color: white;
}

.light-mode button:hover {
    background-color: grey;
    color: black;
}