/* CSS is how you can add style to your website.
   Such as colors, fonts, and positioning of your HTML content. */

body {
  background-image: url("background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: black;
  font-family: Verdana;
}

amazing {
  font-size: 18pt;
  font-weight: bold;
}

.box {
  background-color: lightgray;
  width: calc(100% - 190px);
  height: auto;
  padding: 10px;
  border: 5px solid gray;
  margin: 80px;
  border-radius: 12px;
}