/* General body styling */
body {
  margin: 0;
  padding: 0;
  background-color: #282c34; /* Adjust background color */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  font-family: Arial, sans-serif;
}

/* Container for all elements */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Logo styling */
.logo {
  max-width: 20%;
  max-height: 10%;
  margin-top: 2%;
  object-fit: contain;
}

/* Text styling */
.status {
  font-size: 10vw; /* Scales with viewport width */
  color: green;
  text-align: center;
  margin: 1% 0;
  font-family: 'Courier New', Courier, monospace;


}

/* Button styling */
#fullscreen-button {
  all: unset; /* Remove default button styles */
  flex-grow: 1; /* Allows the button to take up the remaining space */
  width: 100%;
  height: 100%;
  background-image: url('./button1.png'); /* Initial button image */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
}
