/*
Author: Larkerria Stevenson
Date: April 4, 2026
File Name: styles.css
*/

/* Hero image background */
.hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/music-notes.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Moves text down inside hero */
.welcome {
  margin-top: 10%;
}

/* Custom purple background */
.bg-dark-purple {
  background-color: #373684;
}

/* Custom purple text */
.text-dark-purple {
  color: #373684;
}

/* Fix content hidden behind navbar */
body {
  padding-top: 70px;
}

/* Give header height so image shows properly */
header {
  height: 500px;
  display: flex;
  align-items: center;
}