/* global defaults */
body {
  font-family: system-ui, sans-serif;
  background: #fffdf8;
  color: #2d2926;
  position: relative;
}

/* shared links */
a {
  color: inherit;
}

/* homepage */
.home {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem;
}

.picture {
  width: 200px;
  margin-left: -20px
}


.home-intro {
  font-size: 1.35rem;
  line-height: 1.6;
}

.home-buttons {
  display: flex;
  gap: 0.75rem;
}

/* music player */
.staff-button {
  background: none;
  border: none;
  cursor: none;
  display: block;
  padding: 0;
  position: relative;
  width: min(100%, 600px);
}

.music-player {
  margin-top: 3rem;
}

.staff {
  display: block;
  height: auto;
  width: 100%;
}

.staff-note,
.staff-cursor {
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  width: 5%;
}

.staff-cursor {
  display: none;
  z-index: 1;
}

/* normal pages */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
}

/* resume */
.resume-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 1rem;
  box-sizing: border-box;
}

.resume-page object {
  flex: 1;
  width: 100%;
  border: none;
}
