/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url('images/stars5.gif');
  background-repeat: repeat;
}

.box {
  
  #background-image: url("images/purplesky.gif");
  border: 2px dashed purple;
  padding: 2px;
  margin: 100px;
  color: #fff;
  
  border-radius: 10px;
  text-shadow: 1px 1px 0 #000;
  font-family: 'Press Start 2P', monospace; /* use Google Fonts! */
}
 

.container {
  
  display: flex;
  gap: 20px;
  
}

.center-img {
  
  display: block;
  margin: 0 auto;
  
}


.float-right {
float: right;
margin-left: 20px;
}
