body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}


#game-container {
    position: relative;
    width: 400px;
    height: 700px;
    overflow: hidden;
    border: 1px solid #ccc; /* Optional: Add a border */
}

#player {
    position: absolute;
    bottom: 90%;
    left: 50%;
    width:30%;
    height: 30%0%;

}

.platform {
    position: absolute;
    width: 40%;
    height: auto;
    background-color: #333;
    color: #fff;
	font-family:Comic Sans MS;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    padding: 10px;
    border-radius: 5px;
    word-wrap: break-word;
}

#paragraph-input{
	position: absolute;
    margin-top: 10px;
    width: 300px;
	height:50px;
    font-size: 17px;
	margin-bottom:22%;
	margin-right:70%;
	border-radius:5%;
	font-family:Comic Sans MS;
	border-radius:10%;
}


#timer, #score {
    font-size: 30px;
    font-family: Comic Sans MS;
    color:#e1b007;
    position: absolute;
     top:  20%;
    left: 4%;
    z-index: 10;
}

#score {
    top: 26%;
}


#button {
	position: absolute;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

#game-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('spaceN.jpg'); /* Add the path to your image */
    background-size: cover; /* Ensures the background covers the whole container */
    background-position: center; /* Keeps the background centered */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    overflow: hidden;
}

#winText {
	font-size: 700%;
	font-family:Showcard Gothic;
	color:#50c609  ;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

#overText {
	font-size: 700%;
	font-family:Showcard Gothic;
	color:#e74c3c ;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

#start {
	width: 15%;
	height: 8%;
	font-family:Calibri (Body);
	font-size:200%;
	background-color:#08e5f3; 
	border-radius:10%;
	border-color:#08e5f3;
	position: absolute;
	top: 10%;
	left: 10%;
	transform: translate(-50%, -50%);
	z-index: 20;
}