/* 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-image: url("/images/cloudbackground.jpg");
  background-repeat: repeat;
  background-color: white;
  color: black;
  font-family: "Times New Roman", Courier, monospace;
}
p, h1 {
  background-color: white;
}
.page {
  width: 600px;
  margin: 40px auto;
  background-color: white;
  padding: 30px;
  border: 1px dotted black;
}

.menu {
  width: 220px;
  margin: 30px auto;
}

.menu a {
  display: block;
  background-color: white;
  color: skyblue;
  border: 1px dotted black;
    border-radius: 3px;
  padding: 6px;
  margin-bottom: 8px;
  text-align: center;
  text-decoration: none;
  font-family: "Times New Roman", monospace;
  font-weight: bold;
}
.star, .cloud {
  font-family: "Segoe UI Symbol", "Apple Symbols", sans-serif;
}
.menu a:hover {
  background-color: skyblue;
  color: white;
}
.menu-wrapper {
  position: relative;
  width: 320px;
  margin: 30px auto;
}
.symbol {
  position: absolute;
  font-family: "Apple Symbols", "Segoe UI Symbol", sans-serif;
}

.symbol1 {
  left: -60px;
  top: 20px;
}

.symbol2 {
  right: -50px;
  top: 80px;
}

.symbol3 {
  left: -45px;
  top: 160px;
}

.symbol4 {
  right: -70px;
  top: 240px;
}

.symbol5 {
  left: -30px;
  top: 320px;
}

.symbol6 {
  right: -20px;
  top: 48px;
}
body {
  cursor: url("/images/quarternote.cur"), auto;
}
a {
  cursor: url("/images/music.cur"), pointer;
}