/* 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: black;
  color: whitesmoke;
  font-family: "Lucida Console", "Courier New", monospace;
}

.bastard {
  width: 33%;
  float: left;
}

.inlay {
  padding-left: 20px;
  padding-top: 20px;
  text-align: right;
  text-shadow: 0px 5px 7px seagreen;
}

.mush {
  display: block;
  margin: auto;
  width: 90%;
  height: 90%;
  border-radius: 20px;
  box-shadow: 0px 1px 10px whitesmoke;
}

.mush:hover {
  box-shadow: 0px 1px 10px palegreen;
}


/* bro the next part is from about me */


.snouse {
  display: block;
  margin: auto;
  width: 5%;
  height: 5%;
    filter: drop-shadow(0px 1px 5px whitesmoke);
}

.snouse:hover {
  filter: drop-shadow(0px 1px 5px palegreen);
}

.vertical {
  text-align: center;
}

.vertical h1 {
  text-shadow: 0px 5px 7px seagreen;
}