/* 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("strawberrybg.png");
  color: black;
font-family: "MS PGothic", Serif
}
.bg {
  max-width: 1000px;
  margin: auto;
  background-image: radial-gradient(#ffabd9 15%, transparent 15%), radial-gradient(#ffabd9 15%, transparent 15%);
  background-color: white;
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
  padding: 10px;
  border: 5px ridge #ffabd9;
  border-radius: 8px;
}

  html {
          cursor: url("cursor.png"), auto;
      }


.box1 {
  width: 400px;
    position: relative;
    background: #05ffb0;
	border-radius: 3px;
    padding: 20px;
    display: flex;
}
.box2 {
  position:relative;
  width: 200px;
  background: white;
  padding: 20px;
  display: flex;
}
.skinnybox {
  position:relative;
  width:30px;
  background: white;
  padding: 20px;
  display: flex;
  }
.flexbox {
  display:flex;
}
