body {
display: flex;
justify-content: center;
align-items: center;
background: #0e1538;
}
<canvas id="spaceholder" width="804" height="604"></canvas>
</div>
<div class="MenĂ¼Center">
<canvas id="canvas" width="800" height="600"></canvas>
<section id="GameOver">
<h1 class="title">GAME OVER!</h1>
<h3 id="RestartBTN">Restart?</h3>
</section>
<section id="StartMenu">
<h1 class="titlestart">Welcome to space adventure</h1>
<h3 id="PlayBTN">Play</h3>
</section>
<section id="Pause">
<h1 class="titelPause">Pause</h1>
<h3 id="ResumeBTN">Resume</h3>
</section>
</div>
<div class="ScoreClass">
<h2 id="TimeScoar"></h2>
</div>
I have set up my body this way. Now I'm looking to align the ScoreClass div to the right. Is it possible to exclude the ScoreClass div altogether?
Your help in this matter is greatly appreciated. Jonathan