/* This applies to every page */
body {
  background-color: pink;
  text-align: center;
  font-family: 'Are You Serious', cursive;
  padding: 50px;
}

/* Big Title */
h1 {
  color: purple;
  font-size: 110px; /* Very big */
  margin-bottom: 10px;
}

/* Big Navigation Links */
nav {
  margin-bottom: 40px;
}

nav a {
  color: purple;
  font-size: 45px; /* Big links */
  text-decoration: none;
  margin: 0 15px;
}

nav a:hover {
  color: white;
}

/* Big Paragraphs and Content */
p {
  color: black;
  font-size: 50px; /* Big text */
  max-width: 800px;
  margin: 20px auto;
}

/* Big Music Buttons */
.music-link {
  display: block;
  background: white;
  color: purple;
  border: 4px solid purple;
  padding: 20px;
  margin: 20px auto;
  max-width: 500px;
  text-decoration: none;
  font-size: 45px;
  border-radius: 60px;
}

.music-link:hover {
  background: purple;
  color: white;
}

/* Box for Blog and Stories */
.content-box {
  background: white;
  padding: 30px;
  border: 4px solid purple;
  border-radius: 20px;
  max-width: 700px;
  margin: 30px auto;
  text-align: left;
}
