@font-face {
    font-family: 'Robus-BWqOd'; 
    src: url('https://www.shanebrumback.com/fonts/Robus-BWqOd.otf') format('opentype');
}

body {
    margin: 0;
}

canvas {
    display: block;
}

p {
    font-family: Arial;
    font-size: medium;
    text-align: center;
}

#blocker {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#instructions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

#crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: none; /* Hide the crosshair by default */
}

#playButton {
    font-family: 'Robus-BWqOd';
    font-size: 5vw;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

#info {
	position: absolute;
	top: 10px;
	width: 100%;
	text-align: center;
	z-index: 100;
	display:block;
  color: #fff;
}

#status {
	position: absolute;
	bottom: 10px;
  left: 10px;
  color: #fff;
}

#mute {
	position: absolute;
	bottom: 10px;
  right: 10px;
}

@media (max-width: 900px) {
    /* Styles for mobile devices with a maximum width of 767px */
    #playButton {
        font-family: 'Robus-BWqOd';
        font-size: 15vw; /* Adjust the font size as per your preference */
    }
    p {
        font-size: 4vw;
    }
}
