/* 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." */
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Knewave&family=Mouse+Memoirs&family=Rubik+Spray+Paint&display=swap');
body {
  background-color: blanchedalmond
}

li {
  background-color: blanchedalmond;
  color: blueviolet;
  font-family: cursive
}

p {
  font-family: "Mouse Memoirs", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: blueviolet;
  font-size: 28px;
}

h1 {
  font-family: "Rubik Spray Paint", system-ui;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
}

div.pbox {
  border: 4px blueviolet solid;
  background-image: lightblue;
}

div .margin {
  border-right: 3px pink solid; 
  height: 100%;
}

div.leftbox {
  float: left;
  width: 50%;
}

div.centerbox{
  -moz-float-edge: 90px;
  width: 50%;
  margin-right: 300px;
  
}

div.rightbox {
  float: right;
  width: 40%;
}

div.leftwborder{
  float: left;
  width:50%;
  border: 4px blueviolet solid
}

h2 {
  position: fixed;
  top: 50%; 
  font-weight: 2000;
  color: violet;
  left:50%;
  text-align: center;
  padding-left: -20px;
  transform: rotate(90deg) translate(-30%, 200%);
  transform-origin: center;
  font-size:150px;
  opacity:20%;
  z-index: 0;  
}