/* 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=Pixelify+Sans:wght@400..700&display=swap');

* {
   font-family: "Pixelify Sans", sans-serif;
}
  
HTML {
  cursor: url("./pointer.png"), auto;
}
  
body {
  background-image: url("./background.png");
  color: #3f3f74;
  font-family: Verdana;
  text-shadow: -2px 0px #639bff;
}

a {
  text-decoration: none;
}

a:active {
  color: #ffffff;
}

a:hover {
  cursor: url("./pointer hover.png"), pointer;
}

 img {
  image-rendering: pixelated;
  margin-top: 50px;
}

.center-horizontally {
  text-align: center; 
}

/*.text-shadow {*/
  /*background-color: #5fcde4;*/
  /*padding: 10px;*/
/*}*/

.outset {
  border-style: outset;
}

.title-box {
  /*float: left;*/
   background-color: #5fcde4;
  border: 2px solid #000000;
  box-shadow:
    0 0 0 2px #ffffff,
      0 0 0 4px #000000;
  padding: 10px;
  margin: 50px;
}

.info-box {
  float: right;
  background-color: #5fcde4;
  border: 2px solid #000000;
  box-shadow:
    0 0 0 2px #ffffff,
      0 0 0 4px #000000
    ;
  padding: 10px;
margin: 50px;
left
}

.shrimp {
  float: right;
  width 100px
}

p {
  display: inline-block;
}

.list-of-my-work {
  float: left;
  background-color: #5fcde4;
  border: 2px solid #000000;
  box-shadow:
    0 0 0 2px #ffffff,
      0 0 0 4px #000000
    ;
  padding: 10px;
margin: 50px;
}

/*#708090 grey*/
/*5fcde4 light blue*/