/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Cutive Mono', monospace;
}

.title {
  font-family: 'Major Mono Display', monospace;

}
.socials {

  font-family: 'Cutive Mono', 'Cutive Mono', monospace;
}

header {
  text-align: center;
  padding: 2rem 0;
}

header .title h1 {
  margin: 0;
  font-size: 3rem;
}

header .socials nav {
  margin-top: 1rem;
}

header .socials nav a {
  margin: 0 1rem;
  font-style: italic;
  text-decoration: none;
  color: inherit;
}

header .socials nav a:hover {
  text-decoration: underline;
}

.instagram:hover {
  background-color: #E1306C;   /* Instagram red */
  color: #fff;
  font-weight: bold;
}

.bandcamp:hover {
  background-color: #1798C1;   /* Bandcamp blue */
  color: #fff;
  font-weight: bold;
}

.youtube:hover {
  background-color: #FF0000;   /* YouTube red */
  color: #fff;
  font-weight: bold;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #666;
  background: rgba(255,255,255,0.9);
}


.video {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.video video,
.video iframe {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
