/* 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." */

html, body {
  background-color: white;
  color: black;
  font-family: Verdana;  
  background-image: url("https://64.media.tumblr.com/5ed8ed086bf0ff3877638861528bd8db/tumblr_inline_n25c5y1z8k1qhwjx8.png");
  background-repeat: repeat;
  margin: 0;                 /* Removes default browser spacing */
  height: auto;             /* Makes the body span 100% of the viewport height */
  display: flex;             /* Activates the flexbox layout toolkit */
  justify-content: center;   /* Centers your box horizontally */
  overflow: auto; 
}

.box1 {
  background-color: #292929;
  height: 600px;
  Width: 800px;
  margin-top: 40px;
  border-radius: 20px;
  box-shadow: inset 0px 0px 75px 25px #000000;
  
}