/* 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-color: #000000;
  background-image: 
    radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
    radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
    radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px);
  background-size: 550px 550px;
  background-position: 0 0, 40px 60px, 130px 270px;
  
  color: #ff007f;
  font-family: "Arial Black", Impact, sans-serif;
  padding: 20px;
}

h1, p, .profile-box, .blurbs, .top-friends {
  background-color: rgba(11, 0, 26, 0.85);
  border: 3px solid #00ff00;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 0px;
  box-shadow: 5px 5px 0px #ff007f;
}

h1 {
  color: #ffffff;
  text-shadow: 3px 3px 0px #ff3333;
  text-align: center;
  font-size: 28px;
}

.photo-album {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.photo-album img {
  width: 100%;
  border: 2px solid #00ffff;
  background-color: #000;
  padding: 5px;
}

a {
  color: #00ffff;
  text-decoration: underline;
}

a:hover {
  color: #ffffff;
  background-color: #ff007f;
}