body {padding: 0; 
margin: 0;
font-family: "Times New Roman", "Garamound", cursive, serif;
height: 100vh;
width: 100vw;
background-color: black;
}

#all{ position: absolute;  /* Centering every element within the div container*/
  top: 45%;
  left: 50%;
	transform: translate(-50%, -50%); /* Adjusts for the element's size */
	border: 5px hidden gray;
	margin-top: 25px;
	width: 50vw;
	height: auto;
	overflow: hidden;
}

#container{ display: grid;
	background-color: white;
	height: 55vh;
	width: auto;
}
