/* 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." */
h1{
  color:purple;
}
.profile{
  margin: auto;
  height: 300px;
  width: 300px;
  border: solid azure 3px;
  display:inline-block;
}
body {
  background-color: black;
  color: white;
  font-family: Georgia;
  border: 5px azure;
  padding: 40px;
}
.inline-selections {
  display: inline-block;
  border:goldenrod 5px groove;
  background-color:chocolate;
  color:white;
  padding:20px;
}
.projectbox {
  border:palegoldenrod 5px groove;
  background-color:saddlebrown;
  padding:20px
}