/* 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." */
a { color: inherit; } 
h1 {
  font-family: gothic;
  margin: auto;
  border: 30px;
  font-size: 150px;
  text-align: center;
  align-self: center;
  max-width: 800px;
  max-height: 500px;
  background-color: #FDACAC;
  border-radius: 30px;
  padding: 15px;
  text-shadow: 2px 2px 5px blue;
}
h2 {
  margin: auto;
  border: 1px solid black;
  font-size: 60px;
  text-align: center;
  max-width: 800px;
  padding: 30px;
  text-shadow: 3px 3px 7px #FDACAC;
}
h3 {
  border: 4px #FFCDC9;
  margin: auto;
  max-width: 800px;
  text-align: left;
  border-style: inset;
  background-color: #FDACAC;
  text-shadow: -1px 0 grey, 0 1px black, 1px 0 black, 0 -1px grey;
  padding: 15px;
}
body {
  color: #FEEAC9;
  font-family: yoster;
  background-image: url("https://cs.gettysburg.edu/~duncjo01/assets/images/patterns/132.png");
  background-repeat: repeat;
  text-align: center;
}
iframe {
  padding: 20px;
}
.container {
 display: grid;
 max-width: 800px;
 max-height: 500px;
 grid-template-columns: 1fr 1fr 1fr;
 column-gap: 190px;
}
.lastFM {
  padding: 30px;
}
.menu {
  font-family: gothic;
  font-size: 100px;
  
}
@font-face {
  font-family: yoster; /* set name */
  src: url(yoster.ttf);
}
@font-face {
  font-family: gothic; /* set name */
  src: url(GothicByte.ttf);
}