body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #111;
	
	-webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard syntax */
}

#game {
    position: relative;
    width: 100%;
    height: 100%;
}

#bird {
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 40px;
    user-select: none;
	color: white;
	z-index: 1000;
	-webkit-text-stroke: 1px red;
}

.pipe {
    position: absolute;
    width: 1px; /* Width of the pipe */
    right: 0;
}

.top-pipe {
    background-color: white;
    top: 0px;
    position: absolute;
    border-bottom-left-radius: 10px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 10px; /* Rounded bottom-right corner */
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.7); /* Glow effect */
}

.bottom-pipe {
    background-color: white;
    bottom: 0px;
    position: absolute;
    border-top-left-radius: 10px; /* Rounded top-left corner */
    border-top-right-radius: 10px; /* Rounded top-right corner */
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.7); /* Glow effect */
}

#scoreboard {
    position: absolute;
    color: yellow; /* Font color set to black */
    font-size: 32px;
    font-family: Arial, sans-serif; /* Arial font */
    font-weight: bold; /* Bold font */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    padding: 10px;
    border-bottom-right-radius: 10px; /* Rounded bottom-right corner */
    z-index: 1000; /* Ensures the scoreboard is above all other elements */

    /* Adding glow to the text */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8); /* Gold glow */

    /* Adding outline to the text */
    -webkit-text-stroke: 1px black; /* Black text outline */
}


#score {
    margin-left: 5px;
}

#lives {
    position: fixed;
    top: 0px;
    right: 0px;
    color: yellow; /* Font color set to black */
    font-size: 32px;
    font-family: Arial, sans-serif; /* Arial font */
    font-weight: bold; /* Bold font */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    padding: 10px;
    border-bottom-left-radius: 10px; /* Rounded bottom-right corner */
    z-index: 1000; /* Ensures the scoreboard is above all other elements */

    /* Adding outline to the text */
    -webkit-text-stroke: 1px black; /* Black text outline */
}

#lives .fa-user {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)); /* Yellow glow */
}

#startButton {
	display: block;
    position: absolute;    /* Positioning relative to the parent element */
    left: 50%;             /* Center horizontally */
    top: 50%;              /* Center vertically */
    transform: translate(-50%, -50%); /* Adjust position to be truly centered */
    padding: 10px 20px;    /* Padding inside the button */
    font-size: 20px;       /* Font size of the text inside the button */
    text-align: center;    /* Align the text in the center */
    cursor: pointer;       /* Change mouse cursor on hover */
    background-color: #555555; /* Background color of the button */
	width: 200px;
    color: white;          /* Text color */
    border: none;          /* No border */
    border-radius: 5px;    /* Rounded corners */
    box-shadow: 0 4px #999; /* Shadow effect for depth */
	z-index: 2000;
}

#startButton:hover {
    background-color: #444444; /* Slightly darker shade on hover */
}

#startButton:active {
    background-color: #444444;
    box-shadow: 0 2px #666;   /* Shadow effect when pressed */
    transform: translate(-50%, -48%); /* Slightly move the button when pressed */
}
