/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    overflow: hidden;
    font-family: 'Creepster', cursive, sans-serif;
    background-color: #2e003e; /* Deep purple background */
    height: 100%;
}

#gameCanvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
}

/* Style the Radio Station Button */
#radioStationButton {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 10px;
    font-size: 18px;
    background-color: #160759;
    border: none;
    color: white;
    cursor: pointer;
    font-family: 'Creepster', cursive;
}

#radioStationButton:hover {
    background-color: #d95858;
}